From fbb4a198c9abf8a70f6fec03f74c845a6fb12f2f Mon Sep 17 00:00:00 2001 From: wessels <> Date: Thu, 20 Jul 2000 22:10:41 +0000 Subject: [PATCH] DW: - Wrong return value on ENTRY_SPECIAL check for minimum object size. --- src/store.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3