diff options
author | Damien Miller <djm@mindrot.org> | 2020-04-06 10:04:56 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-04-06 10:04:56 +1000 |
commit | 931c50c5883a9910ea1ae9a371e4e815ec56b035 (patch) | |
tree | d85439b59bdd2f52450d630b9c2ad657c9eacfe9 | |
parent | d1d5f728511e2338b7c994968d301d8723012264 (diff) |
fix inverted test for LibreSSL version
-rw-r--r-- | openbsd-compat/openssl-compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h index bcefd8f28..388ae8aa0 100644 --- a/openbsd-compat/openssl-compat.h +++ b/openbsd-compat/openssl-compat.h | |||
@@ -63,7 +63,7 @@ void ssh_libcrypto_init(void); | |||
63 | #endif | 63 | #endif |
64 | 64 | ||
65 | #ifdef LIBRESSL_VERSION_NUMBER | 65 | #ifdef LIBRESSL_VERSION_NUMBER |
66 | # if LIBRESSL_VERSION_NUMBER >= 0x3010000fL | 66 | # if LIBRESSL_VERSION_NUMBER < 0x3010000fL |
67 | # define HAVE_BROKEN_CHACHA20 | 67 | # define HAVE_BROKEN_CHACHA20 |
68 | # endif | 68 | # endif |
69 | #endif | 69 | #endif |