aboutsummaryrefslogtreecommitdiff
path: root/lib/connect.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/connect.c')
-rw-r--r--lib/connect.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/connect.c b/lib/connect.c
index 8ff3dd16f..ef891d713 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -206,6 +206,8 @@ CURLcode Curl_connecthost(struct connectdata *conn,
/* get a new timeout for next attempt */
after = Curl_tvnow();
timeout_ms -= (long)(Curl_tvdiff(after, before)*1000);
+ if(timeout_ms < 0)
+ break;
before = after;
continue;
}
@@ -285,6 +287,8 @@ CURLcode Curl_connecthost(struct connectdata *conn,
/* get a new timeout for next attempt */
after = Curl_tvnow();
timeout_ms -= (long)(Curl_tvdiff(after, before)*1000);
+ if(timeout_ms < 0)
+ break;
before = after;
continue; /* try next address */
}