Commit 5dadbd09 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

don't claim the PASV connect is connected unless it *really* is!

parent 514a8739
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2114,7 +2114,7 @@ CURLcode ftp_perform(struct connectdata *conn,
  else {
    /* We have chosen (this is default) to use the PASV command */
    result = ftp_use_pasv(conn, connected);
    if(connected)
    if(!result && *connected)
      infof(data, "Connected the data stream with PASV!\n");
  }