diff options
Diffstat (limited to 'lib/vtls/nss.c')
-rw-r--r-- | lib/vtls/nss.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vtls/nss.c b/lib/vtls/nss.c index 0d5f740d8..1c5ff4f3e 100644 --- a/lib/vtls/nss.c +++ b/lib/vtls/nss.c @@ -1193,8 +1193,9 @@ static CURLcode nss_init_sslver(SSLVersionRange *sslver, if(data->state.ssl_connect_retry) { infof(data, "TLS disabled due to previous handshake failure\n"); sslver->max = SSL_LIBRARY_VERSION_3_0; + return CURLE_OK; } - return CURLE_OK; + /* intentional fall-through to default to highest TLS version if possible */ case CURL_SSLVERSION_TLSv1: sslver->min = SSL_LIBRARY_VERSION_TLS_1_0; |