diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-10-04 16:24:50 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-10-04 16:24:50 +0200 |
commit | fa77f54a039daec9f28cddb896d5132f3df5c27d (patch) | |
tree | be4f3553ef8510fd04e8267cb7a3be112d7280c2 /lib | |
parent | bc007d8ef5acc5779657c131405d5de9d6d6c5c0 (diff) |
ftp: improved the failed PORT host name resolved error message
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -853,7 +853,7 @@ static CURLcode ftp_state_use_port(struct connectdata *conn, free(addr); if(res == NULL) { - failf(data, "Curl_resolv failed, we can not recover!"); + failf(data, "failed to resolve the address provided to PORT: %s", host); return CURLE_FTP_PORT_FAILED; } |