diff options
author | Damien Miller <djm@mindrot.org> | 2020-04-06 02:04:56 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-04-06 02:04:56 +0200 |
commit | 931c50c5883a9910ea1ae9a371e4e815ec56b035 (patch) | |
tree | d85439b59bdd2f52450d630b9c2ad657c9eacfe9 /openbsd-compat/openssl-compat.h | |
parent | upstream: Indicate if we're using a cached key in trace output. (diff) | |
download | openssh-931c50c5883a9910ea1ae9a371e4e815ec56b035.tar.xz openssh-931c50c5883a9910ea1ae9a371e4e815ec56b035.zip |
fix inverted test for LibreSSL version
Diffstat (limited to 'openbsd-compat/openssl-compat.h')
-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); #endif #ifdef LIBRESSL_VERSION_NUMBER -# if LIBRESSL_VERSION_NUMBER >= 0x3010000fL +# if LIBRESSL_VERSION_NUMBER < 0x3010000fL # define HAVE_BROKEN_CHACHA20 # endif #endif |