From: Damien Miller Date: Mon, 6 Apr 2020 00:04:56 +0000 (+1000) Subject: fix inverted test for LibreSSL version X-Git-Tag: V_8_3_P1~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=931c50c5883a9910ea1ae9a371e4e815ec56b035;p=thirdparty%2Fopenssh-portable.git fix inverted test for LibreSSL version --- 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