mirror of git://anongit.mindrot.org/openssh.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.
This commit is contained in:
parent
f2970868f8
commit
ce93472134
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue