Skip to content
Snippets Groups Projects
Commit 592522ce authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ftp->dirs[] is no longer terminated with a zero entry but ftp->dirdepth

should be used
parent 4f84e6d9
No related branches found
No related tags found
No related merge requests found
......@@ -2165,7 +2165,7 @@ CURLcode ftp_perform(struct connectdata *conn,
{
int i; /* counter for loop */
for (i=0; ftp->dirs[i]; i++) {
for (i=0; i < ftp->dirdepth; i++) {
/* RFC 1738 says empty components should be respected too, but
that is plain stupid since CWD can't be used with an empty argument */
if ((result = ftp_cwd_and_mkd(conn, ftp->dirs[i])) != CURLE_OK)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment