added a missing failf() for certain connect failures

This commit is contained in:
Daniel Stenberg 2002-06-10 13:25:03 +00:00
parent 8b77f40f99
commit 78473f71eb
1 changed files with 1 additions and 0 deletions

View File

@ -457,6 +457,7 @@ CURLcode Curl_connecthost(struct connectdata *conn, /* context */
/* we are connected, awesome! */
break;
}
failf(data, "socket error: %d", err);
/* we are _not_ connected, it was a false alert, continue please */
}