Skip to content

Commit

Permalink
urlrequest.cpp: cURL removed NSS support, so eliminate use of CURLSSL…
Browse files Browse the repository at this point in the history
…BACKEND_NSS
  • Loading branch information
past-due committed Oct 11, 2023
1 parent 2f67a82 commit db1cf70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/urlrequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ void urlSelectSSLBackend()
return;
}
// Note: Use CURLSSLBACKEND_DARWINSSL instead of CURLSSLBACKEND_SECURETRANSPORT to support older cURL versions
const std::vector<curl_sslbackend> backendPreferencesOrder = {CURLSSLBACKEND_SCHANNEL, CURLSSLBACKEND_DARWINSSL, CURLSSLBACKEND_GNUTLS, CURLSSLBACKEND_NSS};
const std::vector<curl_sslbackend> backendPreferencesOrder = {CURLSSLBACKEND_SCHANNEL, CURLSSLBACKEND_DARWINSSL, CURLSSLBACKEND_GNUTLS};
std::vector<curl_sslbackend> ignoredBackends;
#if !defined(USE_OPENSSL_LOCKS_INIT) && !defined(CURL_OPENSSL_DOES_NOT_REQUIRE_LOCKS_INIT)
// Did not compile with support for thread-safety / locks for OpenSSL, so ignore it
Expand Down

0 comments on commit db1cf70

Please sign in to comment.