Removed weird special multi interface condition that caused bug report

#651464.
This commit is contained in:
Daniel Stenberg 2002-12-17 10:05:00 +00:00
parent 5a4c56fc44
commit 747f87f61e
1 changed files with 0 additions and 6 deletions

View File

@ -663,12 +663,6 @@ CURLcode Curl_connecthost(struct connectdata *conn, /* context */
}
if(0 != rc) {
if(data->state.used_interface == Curl_if_multi) {
/* When running the multi interface, we bail out here */
rc = 0;
break;
}
/* get a new timeout for next attempt */
after = Curl_tvnow();
timeout_ms -= Curl_tvdiff(after, before);