From: wessels <> Date: Wed, 19 Nov 1997 03:38:25 +0000 (+0000) Subject: don't need InvokeHandlers() call after ftpParseListing() X-Git-Tag: SQUID_3_0_PRE1~4517 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=89dc9c5f14d870e301afeda69ff21a1168425136;p=thirdparty%2Fsquid.git don't need InvokeHandlers() call after ftpParseListing() --- diff --git a/src/ftp.cc b/src/ftp.cc index 6ff24389d2..64bb2abf22 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -1,5 +1,5 @@ /* - * $Id: ftp.cc,v 1.171 1997/11/18 01:02:37 wessels Exp $ + * $Id: ftp.cc,v 1.172 1997/11/18 20:38:25 wessels Exp $ * * DEBUG: section 9 File Transfer Protocol (FTP) * AUTHOR: Harvest Derived @@ -717,7 +717,6 @@ ftpReadData(int fd, void *data) } else { if (EBIT_TEST(ftpState->flags, FTP_ISDIR)) { ftpParseListing(ftpState, len); - InvokeHandlers(entry); } else { assert(ftpState->data.offset == 0); storeAppend(entry, ftpState->data.buf, len);