]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Wrap XMSS including in ifdef. Patch from markus at
authordtucker@openbsd.org <dtucker@openbsd.org>
Fri, 3 May 2019 03:25:18 +0000 (03:25 +0000)
committerDamien Miller <djm@mindrot.org>
Wed, 8 May 2019 08:42:43 +0000 (18:42 +1000)
blueflash.cc, ok djm

OpenBSD-Commit-ID: e3b34fc35cf12d33bde91ac03633210a3bc0f8b5

sshkey.c

index ad1957762e90c8ed2614113aedae53b7b0738e7c..9849cb237a39b64339a440a1fb3d60215a430f22 100644 (file)
--- a/sshkey.c
+++ b/sshkey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshkey.c,v 1.73 2019/01/21 09:54:11 djm Exp $ */
+/* $OpenBSD: sshkey.c,v 1.74 2019/05/03 03:25:18 dtucker Exp $ */
 /*
  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
  * Copyright (c) 2008 Alexander von Gernler.  All rights reserved.
 #include "digest.h"
 #define SSHKEY_INTERNAL
 #include "sshkey.h"
-#include "sshkey-xmss.h"
 #include "match.h"
 
+#ifdef WITH_XMSS
+#include "sshkey-xmss.h"
 #include "xmss_fast.h"
+#endif
 
 #include "openbsd-compat/openssl-compat.h"