]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
fix incorrect assertion
authorwessels <>
Fri, 23 May 1997 05:16:40 +0000 (05:16 +0000)
committerwessels <>
Fri, 23 May 1997 05:16:40 +0000 (05:16 +0000)
src/store.cc

index 178ad2387a38adc71945639db49dbf8e13cb5b50..ed79d44bce1082210e9d26afdfac2a195669cf8d 100644 (file)
@@ -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];