[openssh-commits] [openssh] 01/01: fix inverted test for LibreSSL version

git+noreply at mindrot.org git+noreply at mindrot.org
Mon Apr 6 10:05:10 AEST 2020


This is an automated email from the git hooks/post-receive script.

djm pushed a commit to branch master
in repository openssh.

commit 931c50c5883a9910ea1ae9a371e4e815ec56b035
Author: Damien Miller <djm at mindrot.org>
Date:   Mon Apr 6 10:04:56 2020 +1000

    fix inverted test for LibreSSL version
---
 openbsd-compat/openssl-compat.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h
index bcefd8f2..388ae8aa 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

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list