--------------------- PatchSet 10664 Date: 2008/07/18 08:01:34 Author: adri Branch: delay_pool_write Tag: (none) Log: Shift delay pools init up a little in preparation for the next commit, which ties into the fd layer a bit. Members: src/main.c:1.86->1.86.2.1 Index: squid/src/main.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/main.c,v retrieving revision 1.86 retrieving revision 1.86.2.1 diff -u -r1.86 -r1.86.2.1 --- squid/src/main.c 11 Jul 2008 19:54:22 -0000 1.86 +++ squid/src/main.c 18 Jul 2008 08:01:34 -0000 1.86.2.1 @@ -1,6 +1,6 @@ /* - * $Id: main.c,v 1.86 2008/07/11 19:54:22 squidadm Exp $ + * $Id: main.c,v 1.86.2.1 2008/07/18 08:01:34 adri Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Harvest Derived @@ -578,6 +578,10 @@ comm_select_postinit(); if (!configured_once) disk_init(); /* disk_init must go before ipcache_init() */ +#if DELAY_POOLS + if (!configured_once) + delayPoolsInit(); +#endif ipcache_init(); fqdncache_init(); parseEtcHosts(); @@ -623,9 +627,6 @@ mimeInit(Config.mimeTablePathname); pconnInit(); refreshInit(); -#if DELAY_POOLS - delayPoolsInit(); -#endif fwdInit(); } #if USE_WCCP