]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Added ENTRY_REQUIRES_COLLAPSING debugging (#453)
authorEduard Bagdasaryan <eduard.bagdasaryan@measurement-factory.com>
Sat, 10 Aug 2019 15:46:19 +0000 (15:46 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Sat, 10 Aug 2019 21:47:37 +0000 (21:47 +0000)
...  forgotten in master d2a6dcb.

src/store.cc

index 9324abf29bed342cb52a1c1d8bc3c8e6f388d525..ee45680a51c03d0453567aea724cfa4866b088df 100644 (file)
@@ -2161,6 +2161,7 @@ std::ostream &operator <<(std::ostream &os, const StoreEntry &e)
         if (EBIT_TEST(e.flags, ENTRY_VALIDATED)) os << 'V';
         if (EBIT_TEST(e.flags, ENTRY_BAD_LENGTH)) os << 'L';
         if (EBIT_TEST(e.flags, ENTRY_ABORTED)) os << 'A';
+        if (EBIT_TEST(e.flags, ENTRY_REQUIRES_COLLAPSING)) os << 'C';
     }
 
     return os << '/' << &e << '*' << e.locks();