summaryrefslogtreecommitdiff
path: root/openbsd-compat/openssl-compat.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-11-16 12:44:01 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-11-16 12:44:01 +1100
commitce93472134fb22eff73edbcd173a21ae38889331 (patch)
treebf247cbb93981d57007e2f76250a736dfbdf7eef /openbsd-compat/openssl-compat.h
parentf2970868f86161a22b2c377057fa3891863a692a (diff)
downloadopenssh-git-ce93472134fb22eff73edbcd173a21ae38889331.tar.gz
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.
Diffstat (limited to 'openbsd-compat/openssl-compat.h')
-rw-r--r--openbsd-compat/openssl-compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h
index 1ae0fce2..b87ce59e 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