diff --git a/common/ssl_calls.c b/common/ssl_calls.c index 04e7a177..2d3b2dfa 100644 --- a/common/ssl_calls.c +++ b/common/ssl_calls.c @@ -601,14 +601,11 @@ ssl_tls_accept(struct ssl_tls *self, int disableSSLv3, * SSLv3 is used by, eg. Microsoft RDC for Mac OS X. * No SSLv3 if disableSSLv3=yes so only tls used */ + options |= SSL_OP_NO_SSLv2; if (disableSSLv3) { options |= SSL_OP_NO_SSLv3; } - else - { - options |= SSL_OP_NO_SSLv2; - } #if defined(SSL_OP_NO_COMPRESSION) /**