]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix state machine error on MKDIR. The state table was out of sync with
authorhno <>
Fri, 6 Sep 2002 00:07:45 +0000 (00:07 +0000)
committerhno <>
Fri, 6 Sep 2002 00:07:45 +0000 (00:07 +0000)
the actual states (one entry too many)

src/ftp.cc

index a60cd9fc59a080ef5fc55a2d7bf8b58f11c496ab..8ba1037628a2c6fc3d57166db9553cec378f3f50 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ftp.cc,v 1.326 2002/08/27 02:08:59 robertc Exp $
+ * $Id: ftp.cc,v 1.327 2002/09/05 18:07:45 hno Exp $
  *
  * DEBUG: section 9     File Transfer Protocol (FTP)
  * AUTHOR: Harvest Derived
@@ -257,7 +257,6 @@ FTPSM *FTP_SM_FUNCS[] =
     ftpReadQuit,               /* SENT_QUIT */
     ftpReadTransferDone,       /* READING_DATA (RETR,LIST,NLST) */
     ftpWriteTransferDone,      /* WRITING_DATA (STOR) */
-    ftpSendReply,              /* WRITTEN_DATA? (STOR) */
     ftpReadMkdir               /* SENT_MKDIR */
 };