]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Fixed an error message: we use CWD, we don't cd into dirs with FTP
authorDaniel Stenberg <daniel@haxx.se>
Wed, 29 Sep 2004 07:21:23 +0000 (07:21 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 29 Sep 2004 07:21:23 +0000 (07:21 +0000)
lib/ftp.c

index 710dbf701cd3170c533b81e49006cebdb82d3d53..e2431598d3b9b26297839c2c8abd729e555fbb12 100644 (file)
--- 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;
 }