diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-02-28 09:59:35 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-02-28 09:59:35 +0100 |
commit | 941e0d3e9bb8d5e4eb70cc694441445faf037c84 (patch) | |
tree | 2ea320ea3f1496d64e1493844d988c4daa3b9fdc /xmss_wots.c | |
parent | Conditionally compile XMSS code. (diff) | |
download | openssh-941e0d3e9bb8d5e4eb70cc694441445faf037c84.tar.xz openssh-941e0d3e9bb8d5e4eb70cc694441445faf037c84.zip |
Add WITH_XMSS, move to prevent conflicts.
Add #ifdef WITH_XMSS to ssh-xmss.c, move it in the other files to after
includes.h so it's less likely to conflict and will pick up WITH_XMSS if
added to config.h.
Diffstat (limited to 'xmss_wots.c')
-rw-r--r-- | xmss_wots.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmss_wots.c b/xmss_wots.c index 8e0c07be7..7767a6561 100644 --- a/xmss_wots.c +++ b/xmss_wots.c @@ -1,4 +1,3 @@ -#ifdef WITH_XMSS /* wots.c version 20160722 Andreas Hülsing @@ -7,6 +6,7 @@ Public domain. */ #include "includes.h" +#ifdef WITH_XMSS #include <stdlib.h> #ifdef HAVE_STDINT_H |