store TIMER_CONNECT even if the connect failed
authorDaniel Stenberg <daniel@haxx.se>
Fri, 12 Apr 2002 10:03:59 +0000 (10:03 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 12 Apr 2002 10:03:59 +0000 (10:03 +0000)
lib/url.c

index ca0bc2d..fbe7afc 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -2276,10 +2276,11 @@ static CURLcode CreateConnection(struct SessionHandle *data,
   if(-1 == conn->firstsocket) {
     /* Connect only if not already connected! */
     result = ConnectPlease(conn);
+    Curl_pgrsTime(data, TIMER_CONNECT); /* connect done, good or bad */
+
     if(CURLE_OK != result)
       return result;
 
-    Curl_pgrsTime(data, TIMER_CONNECT); /* we're connected */
     if(data->set.verbose)
       verboseconnect(conn);