From: wessels <> Date: Sat, 23 Mar 1996 00:47:40 +0000 (+0000) Subject: add ftpInitialize() routine X-Git-Tag: SQUID_3_0_PRE1~6409 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0304d7e313a3be9ebdcace74fc8a8e4570706e4;p=thirdparty%2Fsquid.git add ftpInitialize() routine --- diff --git a/src/main.cc b/src/main.cc index 1a057cce53..551560f37b 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,4 +1,4 @@ -/* $Id: main.cc,v 1.3 1996/02/29 07:23:16 wessels Exp $ */ +/* $Id: main.cc,v 1.4 1996/03/22 17:47:40 wessels Exp $ */ #include "config.h" #include @@ -55,6 +55,7 @@ extern int storeMaintainSwapSpace(); extern void fatal_dump _PARAMS((char *)); extern void fatal _PARAMS((char *)); extern void kill_zombie(); +extern int ftpInitialize _PARAMS((void)); static int asciiPortNumOverride = 0; static int binaryPortNumOverride = 0; @@ -286,6 +287,8 @@ Usage: cached [-Rsehvz] [-f config-file] [-d debug-level] [-[apu] port]\n\ /* init neighbors */ neighbors_init(); + ftpInitialize(); + #if defined(MALLOC_DBG) malloc_debug(malloc_debug_level);