]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
fix inverted test for LibreSSL version
authorDamien Miller <djm@mindrot.org>
Mon, 6 Apr 2020 00:04:56 +0000 (10:04 +1000)
committerDamien Miller <djm@mindrot.org>
Mon, 6 Apr 2020 00:04:56 +0000 (10:04 +1000)
openbsd-compat/openssl-compat.h

index bcefd8f28f9190e72bb99ed2c27b5f05294a36a3..388ae8aa00775d3615e2367ab40963f74425ad20 100644 (file)
@@ -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