diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-09-29 07:21:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-09-29 07:21:23 +0000 |
commit | 6af6a2bbe873ed8e85f4f65d5c0906532f3828a2 (patch) | |
tree | 5b4275107db6baf718e547bd10f10bcc4159c5b4 | |
parent | 2576ac1c76953e573668f8f016f822bc2f2403f6 (diff) |
Fixed an error message: we use CWD, we don't cd into dirs with FTP
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |