summaryrefslogtreecommitdiff
path: root/sshkey-xmss.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 /sshkey-xmss.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 'sshkey-xmss.c')
-rw-r--r--sshkey-xmss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshkey-xmss.c b/sshkey-xmss.c
index e2b7c49ce..5d66ee790 100644
--- a/sshkey-xmss.c
+++ b/sshkey-xmss.c
@@ -1,4 +1,3 @@
1#ifdef WITH_XMSS
2/* $OpenBSD: sshkey-xmss.c,v 1.1 2018/02/23 15:58:38 markus Exp $ */ 1/* $OpenBSD: sshkey-xmss.c,v 1.1 2018/02/23 15:58:38 markus Exp $ */
3/* 2/*
4 * Copyright (c) 2017 Markus Friedl. All rights reserved. 3 * Copyright (c) 2017 Markus Friedl. All rights reserved.
@@ -25,6 +24,7 @@
25 */ 24 */
26 25
27#include "includes.h" 26#include "includes.h"
27#ifdef WITH_XMSS
28 28
29#include <sys/types.h> 29#include <sys/types.h>
30#include <sys/uio.h> 30#include <sys/uio.h>