1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

Fixed an error message: we use CWD, we don't cd into dirs with FTP

This commit is contained in:
Daniel Stenberg 2004-09-29 07:21:23 +00:00
parent 2576ac1c76
commit 6af6a2bbe8

View File

@ -2472,7 +2472,7 @@ static CURLcode ftp_cwd_and_mkd(struct connectdata *conn, char *path)
result = ftp_cwd(conn, path); result = ftp_cwd(conn, path);
} }
if(result) if(result)
failf(conn->data, "Couldn't cd to %s", path); failf(conn->data, "Couldn't CWD to %s", path);
} }
return result; return result;
} }