summaryrefslogtreecommitdiff
path: root/openbsd-compat
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
parentf2970868f86161a22b2c377057fa3891863a692a (diff)
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')
-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 1ae0fce29..b87ce59e7 100644
--- a/openbsd-compat/openssl-compat.h
+++ b/openbsd-compat/openssl-compat.h
@@ -32,7 +32,7 @@
32 32
33int ssh_compatible_openssl(long, long); 33int ssh_compatible_openssl(long, long);
34 34
35#if (OPENSSL_VERSION_NUMBER <= 0x1000100fL) 35#if (OPENSSL_VERSION_NUMBER < 0x1000100fL)
36# error OpenSSL 1.0.1 or greater is required 36# error OpenSSL 1.0.1 or greater is required
37#endif 37#endif
38 38