modified error message when PWD fails

This commit is contained in:
Daniel Stenberg 2001-09-14 12:18:46 +00:00
parent 5214dbbd02
commit 0e25cf41c4

View File

@ -632,7 +632,7 @@ CURLcode _ftp_cwd(struct connectdata *conn, char *path)
return CURLE_OPERATION_TIMEOUTED;
if (ftpcode != 250) {
failf(conn->data, "Couldn't change back to directory %s", path);
failf(conn->data, "Couldn't cd to %s", path);
return CURLE_FTP_ACCESS_DENIED;
}