From: Henrik Nordstrom Date: Wed, 19 Aug 2009 20:29:33 +0000 (+0200) Subject: Revert an evil optimization from the memcache change X-Git-Tag: SQUID_3_2_0_1~777 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eae4ca587c80d42d6a4fd633df50e86e43f8dfed;p=thirdparty%2Fsquid.git Revert an evil optimization from the memcache change --- diff --git a/src/store.cc b/src/store.cc index 3c114bb66d..29c097384a 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1840,7 +1840,7 @@ StoreEntry::trimMemory() return; if (!swapOutAble()) { - if (!EBIT_TEST(flags, KEY_PRIVATE) && mem_obj->policyLowestOffsetToKeep(0) == 0) { + if (mem_obj->policyLowestOffsetToKeep(0) == 0) { /* Nothing to do */ return; }