diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-02-26 04:51:59 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-02-26 04:51:59 +0100 |
commit | 534b2680a15d14e7e60274d5b29b812d44cc5a44 (patch) | |
tree | 4f62d40d2b9c779287c5d003f4be4757a62b2e65 /xmss_commons.c | |
parent | typo: missing ; (diff) | |
download | openssh-534b2680a15d14e7e60274d5b29b812d44cc5a44.tar.xz openssh-534b2680a15d14e7e60274d5b29b812d44cc5a44.zip |
Comment out hexdump().
Nothing currently uses them but they cause conflicts on at least
FreeBSD, possibly others. ok djm@
Diffstat (limited to 'xmss_commons.c')
-rw-r--r-- | xmss_commons.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmss_commons.c b/xmss_commons.c index 0752f29b2..cf031f883 100644 --- a/xmss_commons.c +++ b/xmss_commons.c @@ -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 |