]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Fix check for OpenSSL 1.0.1 exactly.
authorDarren Tucker <dtucker@dtucker.net>
Fri, 16 Nov 2018 01:44:01 +0000 (12:44 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Fri, 16 Nov 2018 01:44:01 +0000 (12:44 +1100)
Both INSTALL and configure.ac claim OpenSSL >= 1.0.1 is supported; fix
compile-time check for 1.0.1 to match.

openbsd-compat/openssl-compat.h

index 1ae0fce292f9d2580cd64320e432fe53c8e1bcff..b87ce59e750a1153a03a33dd20b8b70dfd32e8bb 100644 (file)
@@ -32,7 +32,7 @@
 
 int ssh_compatible_openssl(long, long);
 
-#if (OPENSSL_VERSION_NUMBER <= 0x1000100fL)
+#if (OPENSSL_VERSION_NUMBER < 0x1000100fL)
 # error OpenSSL 1.0.1 or greater is required
 #endif