summaryrefslogtreecommitdiff
path: root/xmss_hash.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-28 19:59:35 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-02-28 19:59:35 +1100
commit941e0d3e9bb8d5e4eb70cc694441445faf037c84 (patch)
tree2ea320ea3f1496d64e1493844d988c4daa3b9fdc /xmss_hash.c
parenta10d8552d0d2438da4ed539275abcbf557d1e7a8 (diff)
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_hash.c')
-rw-r--r--xmss_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmss_hash.c b/xmss_hash.c
index c8b271167..f90e0560c 100644
--- a/xmss_hash.c
+++ b/xmss_hash.c
@@ -1,4 +1,3 @@
1#ifdef WITH_XMSS
2/* 1/*
3hash.c version 20160722 2hash.c version 20160722
4Andreas Hülsing 3Andreas Hülsing
@@ -7,6 +6,7 @@ Public domain.
7*/ 6*/
8 7
9#include "includes.h" 8#include "includes.h"
9#ifdef WITH_XMSS
10 10
11#include "xmss_hash_address.h" 11#include "xmss_hash_address.h"
12#include "xmss_commons.h" 12#include "xmss_commons.h"