Index: squid/src/store_rebuild.c diff -c squid/src/store_rebuild.c:1.77 squid/src/store_rebuild.c:1.77.2.1 *** squid/src/store_rebuild.c:1.77 Wed Oct 17 06:41:50 2001 --- squid/src/store_rebuild.c Wed Jan 8 21:57:41 2003 *************** *** 52,58 **** storeCleanupDoubleCheck(StoreEntry * e) { SwapDir *SD = &Config.cacheSwap.swapDirs[e->swap_dirn]; ! return (SD->dblcheck(SD, e)); } static void --- 52,60 ---- storeCleanupDoubleCheck(StoreEntry * e) { SwapDir *SD = &Config.cacheSwap.swapDirs[e->swap_dirn]; ! if (SD->dblcheck) ! return (SD->dblcheck(SD, e)); ! return 0; } static void