diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-14 12:18:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-14 12:18:46 +0000 |
commit | 0e25cf41c4360d98dcbf0410902cc563c66d42ad (patch) | |
tree | 692b3c8f96a80484f4272af69e5733fc136455ad /lib | |
parent | 5214dbbd026c77ff1975df5f3031b60fdd609bce (diff) |
modified error message when PWD fails
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |