From: wessels <> Date: Thu, 27 May 1999 09:13:12 +0000 (+0000) Subject: change frequency of validated-so-far output X-Git-Tag: SQUID_3_0_PRE1~2166 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a74241472b73dd751b910443872f13e1abb34efa;p=thirdparty%2Fsquid.git change frequency of validated-so-far output --- diff --git a/src/store_rebuild.cc b/src/store_rebuild.cc index a3c2a64ea8..dc1f61cc15 100644 --- a/src/store_rebuild.cc +++ b/src/store_rebuild.cc @@ -1,6 +1,6 @@ /* - * $Id: store_rebuild.cc,v 1.65 1999/05/27 02:42:32 wessels Exp $ + * $Id: store_rebuild.cc,v 1.66 1999/05/27 03:13:12 wessels Exp $ * * DEBUG: section 20 Store Rebuild Routines * AUTHOR: Duane Wessels @@ -117,7 +117,7 @@ storeCleanup(void *datanotused) * otherwise, set it in the validation procedure */ storeDirUpdateSwapSize(e->swap_file_number, e->swap_file_sz, 1); - if ((++validnum & 0xFFFF) == 0) + if ((++validnum & 0x3FFFF) == 0) debug(20, 1) (" %7d Entries Validated so far.\n", validnum); } }