From: Eduard Bagdasaryan Date: Sat, 10 Aug 2019 15:46:19 +0000 (+0000) Subject: Added ENTRY_REQUIRES_COLLAPSING debugging (#453) X-Git-Tag: SQUID_5_0_1~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05bf369bea68063bbdc7cb0ca7e2301de1d466c9;p=thirdparty%2Fsquid.git Added ENTRY_REQUIRES_COLLAPSING debugging (#453) ... forgotten in master d2a6dcb. --- diff --git a/src/store.cc b/src/store.cc index 9324abf29b..ee45680a51 100644 --- a/src/store.cc +++ b/src/store.cc @@ -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();