From: hno <> Date: Mon, 27 Jan 2003 15:36:22 +0000 (+0000) Subject: date: 2003/01/27 03:29:37; author: wessels; state: Exp; lines: +1 -0 X-Git-Tag: SQUID_3_0_PRE1~424 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a196e1e4ca00445d933d192545b1cdc3f664a086;p=thirdparty%2Fsquid.git date: 2003/01/27 03:29:37; author: wessels; state: Exp; lines: +1 -0 was missing CD_SIBLING_HIT case when we should have been incrementing statCounter.cd.times_used. --- diff --git a/src/client_side.cc b/src/client_side.cc index 1fdb43a482..c868616c67 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.613 2003/01/27 08:06:57 hno Exp $ + * $Id: client_side.cc,v 1.614 2003/01/27 08:36:22 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -356,6 +356,7 @@ clientUpdateHierCounters(HierarchyLogEntry * someEntry) switch (someEntry->code) { #if USE_CACHE_DIGESTS case CD_PARENT_HIT: + case CD_SIBLING_HIT: statCounter.cd.times_used++; break; #endif