diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-02-27 04:45:17 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-02-28 06:52:12 +0100 |
commit | a10d8552d0d2438da4ed539275abcbf557d1e7a8 (patch) | |
tree | 558851a676d0fe83749966034794b7f1269dbf0e /xmss_commons.c | |
parent | Check dlopen has RTLD_NOW before enabling pkcs11. (diff) | |
download | openssh-a10d8552d0d2438da4ed539275abcbf557d1e7a8.tar.xz openssh-a10d8552d0d2438da4ed539275abcbf557d1e7a8.zip |
Conditionally compile XMSS code.
The XMSS code is currently experimental and, unlike the rest of OpenSSH
cannot currently be compiled with a c89 compiler.
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 ff3ddb4ae..a25fc673c 100644 --- a/xmss_commons.c +++ b/xmss_commons.c @@ -1,3 +1,4 @@ +#ifdef WITH_XMSS /* xmss_commons.c 20160722 Andreas Hülsing @@ -31,3 +32,4 @@ void hexdump(const unsigned char *a, size_t len) printf("%02x", a[i]); } #endif +#endif /* WITH_XMSS */ |