summaryrefslogtreecommitdiffstats
path: root/xmss_fast.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-28 09:59:35 +0100
committerDarren Tucker <dtucker@dtucker.net>2018-02-28 09:59:35 +0100
commit941e0d3e9bb8d5e4eb70cc694441445faf037c84 (patch)
tree2ea320ea3f1496d64e1493844d988c4daa3b9fdc /xmss_fast.c
parentConditionally compile XMSS code. (diff)
downloadopenssh-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_fast.c')
-rw-r--r--xmss_fast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmss_fast.c b/xmss_fast.c
index 5e3a54314..577a9c3e3 100644
--- a/xmss_fast.c
+++ b/xmss_fast.c
@@ -1,4 +1,3 @@
-#ifdef WITH_XMSS
/*
xmss_fast.c version 20160722
Andreas Hülsing
@@ -7,6 +6,7 @@ Public domain.
*/
#include "includes.h"
+#ifdef WITH_XMSS
#include "xmss_fast.h"
#include <stdlib.h>