diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-10-28 15:18:13 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-10-28 15:18:13 +1100 |
commit | 595605d4abede475339d6a1f07a8cc674c11d1c3 (patch) | |
tree | 77eb2019d82d38588ff95b28966f11ffe66edeb0 /openbsd-compat | |
parent | 6ab75aba340d827140d7ba719787aabaf39a0355 (diff) |
Update check for minimum OpenSSL version.
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/openssl-compat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h index 28e4fc360..94c750b7f 100644 --- a/openbsd-compat/openssl-compat.h +++ b/openbsd-compat/openssl-compat.h | |||
@@ -30,8 +30,8 @@ | |||
30 | 30 | ||
31 | int ssh_compatible_openssl(long, long); | 31 | int ssh_compatible_openssl(long, long); |
32 | 32 | ||
33 | #if (OPENSSL_VERSION_NUMBER <= 0x0090805fL) | 33 | #if (OPENSSL_VERSION_NUMBER <= 0x1000100fL) |
34 | # error OpenSSL 0.9.8f or greater is required | 34 | # error OpenSSL 1.0.1 or greater is required |
35 | #endif | 35 | #endif |
36 | 36 | ||
37 | #ifndef OPENSSL_VERSION | 37 | #ifndef OPENSSL_VERSION |