From: Daniel Stenberg Date: Wed, 29 Sep 2004 07:21:23 +0000 (+0000) Subject: Fixed an error message: we use CWD, we don't cd into dirs with FTP X-Git-Tag: curl-7_12_2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6af6a2bbe873ed8e85f4f65d5c0906532f3828a2;p=thirdparty%2Fcurl.git Fixed an error message: we use CWD, we don't cd into dirs with FTP --- diff --git a/lib/ftp.c b/lib/ftp.c index 710dbf701c..e2431598d3 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -2472,7 +2472,7 @@ static CURLcode ftp_cwd_and_mkd(struct connectdata *conn, char *path) result = ftp_cwd(conn, path); } if(result) - failf(conn->data, "Couldn't cd to %s", path); + failf(conn->data, "Couldn't CWD to %s", path); } return result; }