--------------------- PatchSet 6493 Date: 2005/03/11 00:15:32 Author: hno Branch: lfs-2_5 Tag: (none) Log: Kill redundant Config.Store.maxObjectSize check (already checked a few lines above..) Members: src/store.c:1.16.6.7.6.5->1.16.6.7.6.6 Index: squid/src/store.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/store.c,v retrieving revision 1.16.6.7.6.5 retrieving revision 1.16.6.7.6.6 diff -u -r1.16.6.7.6.5 -r1.16.6.7.6.6 --- squid/src/store.c 4 Mar 2005 12:05:44 -0000 1.16.6.7.6.5 +++ squid/src/store.c 11 Mar 2005 00:15:32 -0000 1.16.6.7.6.6 @@ -1,6 +1,6 @@ /* - * $Id: store.c,v 1.16.6.7.6.5 2005/03/04 12:05:44 hno Exp $ + * $Id: store.c,v 1.16.6.7.6.6 2005/03/11 00:15:32 hno Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -638,9 +638,6 @@ e->mem_obj->inmem_hi > Config.Store.maxObjectSize) { debug(20, 2) ("storeCheckCachable: NO: too big\n"); store_check_cachable_hist.no.too_big++; - } else if (e->mem_obj->reply->content_length > (int) Config.Store.maxObjectSize) { - debug(20, 2) ("storeCheckCachable: NO: too big\n"); - store_check_cachable_hist.no.too_big++; } else if (storeCheckTooSmall(e)) { debug(20, 2) ("storeCheckCachable: NO: too small\n"); store_check_cachable_hist.no.too_small++;