From: Amos Jeffries Date: Thu, 23 Jul 2009 12:27:19 +0000 (+1200) Subject: Add omitted break X-Git-Tag: SQUID_3_2_0_1~853 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d06d0e1e50bd4afef6446747a27d170a892bbb61;p=thirdparty%2Fsquid.git Add omitted break --- diff --git a/src/ftp.cc b/src/ftp.cc index cf607d9336..753ccb60ce 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -2621,6 +2621,7 @@ ftpSendPassive(FtpStateData * ftpState) if (addr.IsIPv4()) { snprintf(cbuf, 1024, "EPSV 1\r\n"); ftpState->state = SENT_EPSV_1; + break; } else if (ftpState->flags.epsv_all_sent) { debugs(9, DBG_IMPORTANT, "FTP does not allow PASV method after 'EPSV ALL' has been sent.");