From: wessels <> Date: Tue, 12 Jan 1999 02:42:22 +0000 (+0000) Subject: print ENTRY_ABORTED flag X-Git-Tag: SQUID_3_0_PRE1~2441 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2e002d1e36128a29b0754d66b277d7c58036ab2;p=thirdparty%2Fsquid.git print ENTRY_ABORTED flag --- diff --git a/src/stat.cc b/src/stat.cc index 8bf640dc89..154fa10cf1 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1,6 +1,6 @@ /* - * $Id: stat.cc,v 1.305 1999/01/11 16:50:39 wessels Exp $ + * $Id: stat.cc,v 1.306 1999/01/11 19:42:22 wessels Exp $ * * DEBUG: section 18 Cache Manager Statistics * AUTHOR: Harvest Derived @@ -228,6 +228,8 @@ storeEntryFlags(const StoreEntry * entry) strcat(buf, "VALIDATED,"); if (EBIT_TEST(flags, ENTRY_BAD_LENGTH)) strcat(buf, "BAD_LENGTH,"); + if (EBIT_TEST(flags, ENTRY_ABORTED)) + strcat(buf, "ABORTED,"); if ((t = strrchr(buf, ','))) *t = '\0'; return buf;