From: Darren Tucker Date: Fri, 16 Nov 2018 01:44:01 +0000 (+1100) Subject: Fix check for OpenSSL 1.0.1 exactly. X-Git-Tag: V_8_0_P1~235 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce93472134fb22eff73edbcd173a21ae38889331;p=thirdparty%2Fopenssh-portable.git Fix check for OpenSSL 1.0.1 exactly. Both INSTALL and configure.ac claim OpenSSL >= 1.0.1 is supported; fix compile-time check for 1.0.1 to match. --- diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h index 1ae0fce29..b87ce59e7 100644 --- a/openbsd-compat/openssl-compat.h +++ b/openbsd-compat/openssl-compat.h @@ -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