Skip to content
Snippets Groups Projects
Commit 0e25cf41 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

modified error message when PWD fails

parent 5214dbbd
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment