ftp: improved the failed PORT host name resolved error message

This commit is contained in:
Daniel Stenberg 2011-10-04 16:24:50 +02:00
parent bc007d8ef5
commit fa77f54a03
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}