Commit 6af6a2bb authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Fixed an error message: we use CWD, we don't cd into dirs with FTP

parent 2576ac1c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}