From 5c6eddcadd65432b8739117a161cb8062be997d9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 16 Jan 2002 22:26:01 +0000 Subject: [PATCH] fixed time-out returned without error text set --- lib/connect.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/connect.c b/lib/connect.c index 61e45689e..34fc1e844 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -369,9 +369,11 @@ CURLcode Curl_connecthost(struct connectdata *conn, /* context */ /* subtract the passed time */ timeout_ms -= (long)has_passed; - if(timeout_ms < 0) + if(timeout_ms < 0) { /* a precaution, no need to continue if time already is up */ + failf(data, "Connection time-out"); return CURLE_OPERATION_TIMEOUTED; + } } #ifdef ENABLE_IPV6