summaryrefslogtreecommitdiff
path: root/cipher-bf1.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2016-07-15 14:45:34 +1000
committerDamien Miller <djm@mindrot.org>2016-07-15 14:45:34 +1000
commit832b7443b7a8e181c95898bc5d73497b7190decd (patch)
tree98a1398fb2576aae9b76ce2acca6de167f927df4 /cipher-bf1.c
parent5fbe93fc6fbb2fe211e035703dec759d095e3dd8 (diff)
disable ciphers not supported by OpenSSL
bz#2466 ok dtucker@
Diffstat (limited to 'cipher-bf1.c')
-rw-r--r--cipher-bf1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher-bf1.c b/cipher-bf1.c
index ee72ac085..7d51f5198 100644
--- a/cipher-bf1.c
+++ b/cipher-bf1.c
@@ -20,7 +20,7 @@
20 20
21#include "includes.h" 21#include "includes.h"
22 22
23#ifdef WITH_OPENSSL 23#if defined(WITH_OPENSSL) && !defined(OPENSSL_NO_BF)
24 24
25#include <sys/types.h> 25#include <sys/types.h>
26 26
@@ -100,4 +100,4 @@ evp_ssh1_bf(void)
100 ssh1_bf.key_len = 32; 100 ssh1_bf.key_len = 32;
101 return (&ssh1_bf); 101 return (&ssh1_bf);
102} 102}
103#endif /* WITH_OPENSSL */ 103#endif /* defined(WITH_OPENSSL) && !defined(OPENSSL_NO_BF) */