=== modified file 'src/ssl/Ssl.c' --- src/ssl/Ssl.c 2015-06-09 16:52:39 +0000 +++ src/ssl/Ssl.c 2016-04-28 13:30:15 +0000 @@ -267,11 +267,16 @@ #endif break; case SSL_V3: +#ifdef OPENSSL_NO_SSL3 + LogError("SSL: SSLv3 not supported\n"); + goto sslerror; +#else if (Run.flags & Run_FipsEnabled) { LogError("SSL: SSLv3 is not allowed in FIPS mode -- use TLS\n"); goto sslerror; } method = SSLv3_client_method(); +#endif break; case SSL_TLSV1: method = TLSv1_client_method();