diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-09-01 08:21:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-09-01 08:21:08 +0000 |
commit | 5629eeaec2580ff63f7539ee0045e18ec3e44ddc (patch) | |
tree | f7094181a197f7f242cacbe6ef019cd56866dcd6 /lib | |
parent | 46c2bc4bb67fefc63263468d6442f42570fdf237 (diff) |
The error buffer was not getting filled when Curl_wait_for_resolv() fails.
Jeff Pohlmeyer fixed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hostip.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/hostip.c b/lib/hostip.c index 5c3a71841..8a2b1a218 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -466,8 +466,10 @@ CURLcode Curl_wait_for_resolv(struct connectdata *conn, if(!conn->async.dns) { /* a name was not resolved */ - if(conn->async.done) + if(conn->async.done) { + failf(data, "Could not resolve host: %s", conn->name); rc = CURLE_COULDNT_RESOLVE_HOST; + } else rc = CURLE_OPERATION_TIMEDOUT; |