Author: markt Date: Wed Aug 23 11:45:11 2017 New Revision: 1805884 URL: http://svn.apache.org/viewvc?rev=1805884&view=rev Log: Fix two more LibreSSL warnings
Modified: tomcat/native/trunk/native/src/sslcontext.c Modified: tomcat/native/trunk/native/src/sslcontext.c URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/sslcontext.c?rev=1805884&r1=1805883&r2=1805884&view=diff ============================================================================== --- tomcat/native/trunk/native/src/sslcontext.c (original) +++ tomcat/native/trunk/native/src/sslcontext.c Wed Aug 23 11:45:11 2017 @@ -1783,7 +1783,7 @@ static const char* SSL_CIPHER_authentica if (cipher == NULL) { return "UNKNOWN"; } -#if OPENSSL_VERSION_NUMBER < 0x10100000L +#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) kx = cipher->algorithm_mkey; auth = cipher->algorithm_auth; #else --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org