From: wessels <> Date: Tue, 31 Mar 1998 06:00:47 +0000 (+0000) Subject: why did we close open swap logs if its not okay to write clean ones? X-Git-Tag: SQUID_3_0_PRE1~3693 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61316c1bcd51b57de25b3e5186b9645fadcd313b;p=thirdparty%2Fsquid.git why did we close open swap logs if its not okay to write clean ones? --- diff --git a/src/store_dir.cc b/src/store_dir.cc index 06635db00d..7ce0e9d801 100644 --- a/src/store_dir.cc +++ b/src/store_dir.cc @@ -1,6 +1,6 @@ /* - * $Id: store_dir.cc,v 1.57 1998/03/28 23:24:52 wessels Exp $ + * $Id: store_dir.cc,v 1.58 1998/03/30 23:00:47 wessels Exp $ * * DEBUG: section 47 Store Directory Routines * AUTHOR: Duane Wessels @@ -535,7 +535,13 @@ storeDirWriteCleanLogs(int reopen) if (store_rebuilding) { debug(20, 1) ("Not currently OK to rewrite swap log.\n"); debug(20, 1) ("storeDirWriteCleanLogs: Operation aborted.\n"); +#if DONT + /* + * why did we want to close the current swap logs here? + * DW/1.2.beta19 + */ storeDirCloseSwapLogs(); +#endif return 0; } debug(20, 1) ("storeDirWriteCleanLogs: Starting...\n");