]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
print ENTRY_ABORTED flag
authorwessels <>
Tue, 12 Jan 1999 02:42:22 +0000 (02:42 +0000)
committerwessels <>
Tue, 12 Jan 1999 02:42:22 +0000 (02:42 +0000)
src/stat.cc

index 8bf640dc89a725eb0ccf235f76e6cf421fe6f7c6..154fa10cf1c43549436e3f55c4829329a08a1466 100644 (file)
@@ -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;