]> granicus.if.org Git - curl/commitdiff
Removed weird special multi interface condition that caused bug report
authorDaniel Stenberg <daniel@haxx.se>
Tue, 17 Dec 2002 10:05:00 +0000 (10:05 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 17 Dec 2002 10:05:00 +0000 (10:05 +0000)
#651464.

lib/connect.c

index 151864fd7b7546c296c240b4ceb418894acfd556..2c85dc1570465c30b771069d57c9ad2c247f305c 100644 (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);