aboutsummaryrefslogtreecommitdiff
path: root/libssh
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-09-25 18:34:58 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-09-25 18:34:58 +0200
commitfef87793a00edd8f2ea030d80ffcc9b67af8489f (patch)
tree5aef49760a1a6807d2e758f4b3346de0a80966dc /libssh
parent79c475c9170519a05fa707f66478aaa8f715e0b0 (diff)
downloadlibssh-fef87793a00edd8f2ea030d80ffcc9b67af8489f.tar.gz
libssh-fef87793a00edd8f2ea030d80ffcc9b67af8489f.tar.xz
libssh-fef87793a00edd8f2ea030d80ffcc9b67af8489f.zip
Fix openssl version usage, found by tysonite
Diffstat (limited to 'libssh')
-rw-r--r--libssh/wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/wrapper.c b/libssh/wrapper.c
index f6806057..3dd497f7 100644
--- a/libssh/wrapper.c
+++ b/libssh/wrapper.c
@@ -406,7 +406,7 @@ static struct crypto_struct ssh_ciphertab[] = {
#include <openssl/des.h>
#endif
-#if (OPENSSL_VERSION_NUMBER<0x009070000)
+#if (OPENSSL_VERSION_NUMBER<0x00907000L)
#define OLD_CRYPTO
#endif