mirror of
https://github.com/curl/curl.git
synced 2026-07-24 00:57:16 +03:00
schannel: fix variable shadowing warning
No need to redeclare the variable.
This commit is contained in:
parent
068cd1ad4c
commit
23d48c35cb
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue