mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05: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
@ -2472,7 +2472,7 @@ static CURLcode ftp_cwd_and_mkd(struct connectdata *conn, char *path)
|
|||||||
result = ftp_cwd(conn, path);
|
result = ftp_cwd(conn, path);
|
||||||
}
|
}
|
||||||
if(result)
|
if(result)
|
||||||
failf(conn->data, "Couldn't cd to %s", path);
|
failf(conn->data, "Couldn't CWD to %s", path);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user