mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 08:14:24 +02: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)
|
void hexdump(const unsigned char *a, size_t len)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++)
|
||||||
printf("%02x", a[i]);
|
printf("%02x", a[i]);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
@ -11,5 +11,7 @@ Public domain.
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
|
void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
|
||||||
|
#if 0
|
||||||
void hexdump(const unsigned char *a, size_t len);
|
void hexdump(const unsigned char *a, size_t len);
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user