mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:14:17 +03:00
Fixed an error message: we use CWD, we don't cd into dirs with FTP
This commit is contained in:
parent
2576ac1c76
commit
6af6a2bbe8
1 changed files with 1 additions and 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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue