summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-09-14 12:18:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-09-14 12:18:46 +0000
commit0e25cf41c4360d98dcbf0410902cc563c66d42ad (patch)
tree692b3c8f96a80484f4272af69e5733fc136455ad
parent5214dbbd026c77ff1975df5f3031b60fdd609bce (diff)
downloadgnurl-0e25cf41c4360d98dcbf0410902cc563c66d42ad.tar.gz
gnurl-0e25cf41c4360d98dcbf0410902cc563c66d42ad.tar.bz2
gnurl-0e25cf41c4360d98dcbf0410902cc563c66d42ad.zip
modified error message when PWD fails
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 0f9aa3a1d..a8ae4cb40 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -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;
}