From ce93472134fb22eff73edbcd173a21ae38889331 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Fri, 16 Nov 2018 12:44:01 +1100 Subject: [PATCH] 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. --- openbsd-compat/openssl-compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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