]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
date: 2003/01/27 03:29:37; author: wessels; state: Exp; lines: +1 -0
authorhno <>
Mon, 27 Jan 2003 15:36:22 +0000 (15:36 +0000)
committerhno <>
Mon, 27 Jan 2003 15:36:22 +0000 (15:36 +0000)
was missing CD_SIBLING_HIT case when we should have been
incrementing statCounter.cd.times_used.

src/client_side.cc

index 1fdb43a482652f85616d12812d9912ef5c6a3a02..c868616c675c1b1b91ec6841328b152ff2024c19 100644 (file)
@@ -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