From 6af6a2bbe873ed8e85f4f65d5c0906532f3828a2 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 29 Sep 2004 07:21:23 +0000 Subject: Fixed an error message: we use CWD, we don't cd into dirs with FTP --- lib/ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ftp.c') diff --git a/lib/ftp.c b/lib/ftp.c index 710dbf701..e2431598d 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; } -- cgit v1.2.3