From: Daniel Stenberg Date: Tue, 8 Jan 2002 23:23:24 +0000 (+0000) Subject: added a missing failf() before returning an error code X-Git-Tag: curl-7_9_3-pre2~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d57e09889a435cd525e811a6fe61a2b56a09189f;p=curl added a missing failf() before returning an error code --- diff --git a/lib/ssluse.c b/lib/ssluse.c index 3c4728ab6..47ae497f0 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -783,9 +783,11 @@ Curl_SSLConnect(struct connectdata *conn) /* 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 */ - return CURLE_OPERATION_TIMEOUTED; + failf(data, "SSL connection timeout"); + return CURLE_OPERATION_TIMEOUTED; + } } else /* no particular time-out has been set */