diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-10 13:25:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-10 13:25:03 +0000 |
commit | 78473f71ebc78775381cbd448b5a7238a184caff (patch) | |
tree | 499f09738cee2de947f6478b8a011d52fa27c775 /lib | |
parent | 8b77f40f991d22fc835397900be673077f69f662 (diff) |
added a missing failf() for certain connect failures
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/connect.c b/lib/connect.c index 9bd1bdfbd..6babb9f42 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -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 */ } |