Commit fa77f54a authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ftp: improved the failed PORT host name resolved error message

parent bc007d8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }