mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-23 09:17:32 +08:00
Comment out hexdump().
Nothing currently uses them but they cause conflicts on at least FreeBSD, possibly others. ok djm@
This commit is contained in:
parent
5aea4aa522
commit
534b2680a1
@ -21,9 +21,11 @@ void to_byte(unsigned char *out, unsigned long long in, uint32_t bytes)
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
void hexdump(const unsigned char *a, size_t len)
|
||||
{
|
||||
size_t i;
|
||||
for (i = 0; i < len; i++)
|
||||
printf("%02x", a[i]);
|
||||
}
|
||||
#endif
|
||||
|
@ -11,5 +11,7 @@ Public domain.
|
||||
#include <stdint.h>
|
||||
|
||||
void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
|
||||
#if 0
|
||||
void hexdump(const unsigned char *a, size_t len);
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user