diff options
Diffstat (limited to 'url.c')
-rw-r--r-- | url.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -338,9 +338,9 @@ openSSLHandle(int sock, char *hostname, char **p_cert) option |= SSL_OP_NO_TLSv1; if (strchr(ssl_forbid_method, 'T')) option |= SSL_OP_NO_TLSv1; - if (strchr(ssl_forbid_method, 't1.1')) - option |= SSL_OP_NO_TLSv1_1; - if (strchr(ssl_forbid_method, 'T1.1')) + if (strchr(ssl_forbid_method, '4')) + option |= SSL_OP_NO_TLSv1; + if (strchr(ssl_forbid_method, '5')) option |= SSL_OP_NO_TLSv1_1; } #ifdef SSL_OP_NO_COMPRESSION |