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.
This commit is contained in:
Darren Tucker 2018-11-16 12:44:01 +11:00
parent f2970868f8
commit ce93472134
1 changed files with 1 additions and 1 deletions

View 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