diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-12-17 10:05:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-12-17 10:05:00 +0000 |
commit | 747f87f61e2278381cb9da3b9b19b9ca39a0582b (patch) | |
tree | 943f341bfc8a33693d556d2b0d22b5649d617671 /lib | |
parent | 5a4c56fc448f1e58096d50198b6bf69c3fb2c0c4 (diff) |
Removed weird special multi interface condition that caused bug report
#651464.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connect.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/connect.c b/lib/connect.c index 151864fd7..2c85dc157 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -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); |