From: wessels <> Date: Tue, 26 May 1998 23:37:48 +0000 (+0000) Subject: removed HIERARCHICAL entry flag X-Git-Tag: SQUID_3_0_PRE1~3254 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=237ab19a1f3437b956198b1cf9f6e6a6943eea6d;p=thirdparty%2Fsquid.git removed HIERARCHICAL entry flag --- diff --git a/src/stat.cc b/src/stat.cc index 948678bdac..2fbb02d1a8 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1,6 +1,6 @@ /* - * $Id: stat.cc,v 1.254 1998/05/24 03:41:13 wessels Exp $ + * $Id: stat.cc,v 1.255 1998/05/26 17:37:48 wessels Exp $ * * DEBUG: section 18 Cache Manager Statistics * AUTHOR: Harvest Derived @@ -289,8 +289,6 @@ describeFlags(const StoreEntry * entry) strcat(buf, "ED,"); if (EBIT_TEST(flags, KEY_PRIVATE)) strcat(buf, "KP,"); - if (EBIT_TEST(flags, HIERARCHICAL)) - strcat(buf, "HI,"); if (EBIT_TEST(flags, ENTRY_NEGCACHED)) strcat(buf, "NG,"); if ((t = strrchr(buf, ',')))