Commit ab85ac5e authored by Patrick Monnerat's avatar Patrick Monnerat
Browse files

ftp: accept all 2xx responses to the PORT command

parent d771b44e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2102,7 +2102,9 @@ static CURLcode ftp_state_port_resp(struct connectdata *conn,
  ftpport fcmd = (ftpport)ftpc->count1;
  CURLcode result = CURLE_OK;

  if(ftpcode != 200) {
  /* The FTP spec tells a positive response should have code 200.
     Be more permissive here to tolerate deviant servers. */
  if(ftpcode / 100 != 2) {
    /* the command failed */

    if(EPRT == fcmd) {