Disable SSLv23 (POODLE vulnerability)

This commit is contained in:
Stefan Ritt 2014-10-24 12:04:39 +02:00
parent 4c5ec1d10d
commit da69122988

View File

@ -28902,7 +28902,7 @@ SSL_CTX *init_ssl(void)
SSL_library_init();
SSL_load_error_strings();
meth = (SSL_METHOD *) SSLv23_method();
meth = (SSL_METHOD *) TLSv1_method();
ctx = SSL_CTX_new(meth);
if (getcfg("global", "SSL Passphrase", pwd, sizeof(pwd))) {