diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-01-28 23:21:24 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-01-28 23:21:24 +0000 |
commit | f661475962213123b5e640db9744b23ea361ac65 (patch) | |
tree | 208ca8ff189d78bab62c8541378f2dc98a023957 /lib | |
parent | 54b02ecf096cda299905b15ee6e9c386ba268def (diff) |
Connect failures with the multi interface was often returned as "connect()
timed out" even though the reason was different. Fixed this problem by not
setting this timeout to zero when using multi.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c index 3b40891ad..5cd4c0656 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -754,7 +754,7 @@ CURLcode Curl_connecthost(struct connectdata *conn, /* context */ if(data->state.used_interface == Curl_if_multi) /* don't hang when doing multi */ - timeout_per_addr = timeout_ms = 0; + timeout_per_addr = 0; /* * Connecting with a Curl_addrinfo chain |