schannel: fix variable shadowing warning

No need to redeclare the variable.
This commit is contained in:
Marcel Raad 2017-03-28 01:16:12 +02:00
parent 068cd1ad4c
commit 23d48c35cb
No known key found for this signature in database
GPG Key ID: B7F13D981BBF1607
1 changed files with 1 additions and 1 deletions

View File

@ -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;