minor fix to not shadow a variable

This commit is contained in:
Daniel Stenberg 2003-10-18 20:38:18 +00:00
parent 9df8f9a63d
commit 381c6c5d52
1 changed files with 15 additions and 18 deletions

View File

@ -389,8 +389,6 @@ CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles)
case CURLM_STATE_WAITCONNECT:
/* awaiting a completion of an asynch connect */
{
bool connected;
easy->result = Curl_is_connected(easy->easy_conn,
easy->easy_conn->firstsocket,
&connected);
@ -409,7 +407,6 @@ CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles)
easy->state = CURLM_STATE_DO;
result = CURLM_CALL_MULTI_PERFORM;
}
}
break;
case CURLM_STATE_DO: