From: wessels <> Date: Fri, 23 May 1997 05:16:40 +0000 (+0000) Subject: fix incorrect assertion X-Git-Tag: SQUID_3_0_PRE1~4982 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb36fc2fe97f925a7a166f2b34d8d3970d9ec77f;p=thirdparty%2Fsquid.git fix incorrect assertion --- diff --git a/src/store.cc b/src/store.cc index 178ad2387a..ed79d44bce 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.239 1997/05/22 22:54:01 wessels Exp $ + * $Id: store.cc,v 1.240 1997/05/22 23:16:40 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -2219,7 +2219,7 @@ storeClientCopy(StoreEntry * e, MemObject *mem = e->mem_obj; struct _store_client *sc; assert(seen_offset <= mem->e_current_len); - assert(copy_offset < mem->e_lowest_offset); + assert(copy_offset >= mem->e_lowest_offset); if ((ci = storeClientListSearch(mem, data)) < 0) fatal_dump("storeClientCopy: Unregistered client"); sc = &mem->clients[ci];