fix inverted test for LibreSSL version

This commit is contained in:
Damien Miller 2020-04-06 10:04:56 +10:00
parent d1d5f72851
commit 931c50c588
1 changed files with 1 additions and 1 deletions

View 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