mirror of
https://github.com/curl/curl.git
synced 2025-01-12 13:55:11 +08:00
schannel: fix variable shadowing warning
No need to redeclare the variable.
This commit is contained in:
parent
068cd1ad4c
commit
23d48c35cb
@ -255,7 +255,7 @@ schannel_connect_step1(struct connectdata *conn, int sockindex)
|
||||
case CURL_SSLVERSION_TLSv1_2:
|
||||
case CURL_SSLVERSION_TLSv1_3:
|
||||
{
|
||||
CURLcode result = set_ssl_version_min_max(&schannel_cred, conn);
|
||||
result = set_ssl_version_min_max(&schannel_cred, conn);
|
||||
if(result != CURLE_OK)
|
||||
return result;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user