From: wessels <> Date: Thu, 20 Jul 2000 22:10:41 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~1886 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fbb4a198c9abf8a70f6fec03f74c845a6fb12f2f;p=thirdparty%2Fsquid.git DW: - Wrong return value on ENTRY_SPECIAL check for minimum object size. --- diff --git a/src/store.cc b/src/store.cc index b10303e4ca..ec8dbe26c8 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.529 2000/07/18 06:16:41 wessels Exp $ + * $Id: store.cc,v 1.530 2000/07/20 16:10:41 wessels Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -528,7 +528,7 @@ storeCheckTooSmall(StoreEntry * e) { MemObject *mem = e->mem_obj; if (EBIT_TEST(e->flags, ENTRY_SPECIAL)) - return 1; + return 0; if (STORE_OK == e->store_status) if (mem->object_sz < Config.Store.minObjectSize) return 1;