]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
fix old sc location references
authorrobertc <>
Mon, 16 Sep 2002 02:57:19 +0000 (02:57 +0000)
committerrobertc <>
Mon, 16 Sep 2002 02:57:19 +0000 (02:57 +0000)
src/client_side_reply.cc

index 2bcf876d89522d2ebb945a377862c823f7f6df8d..13afc470f8d2284b2f930fc224529edfa0ea431f 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side_reply.cc,v 1.4 2002/09/15 14:42:05 robertc Exp $
+ * $Id: client_side_reply.cc,v 1.5 2002/09/15 20:57:19 robertc Exp $
  *
  * DEBUG: section 88    Client-side Reply Routines
  * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c)
@@ -217,7 +217,7 @@ clientProcessExpired(clientReplyContext * context)
      * it is not, then the beginning of the object data might get
      * freed from memory before we need to access it.
      */
-    assert(http->sc->owner == context);
+    assert(context->sc->owner == context);
 #endif
     /* Prepare to make a new temporary request */
     clientReplyContextSaveState(context, http);
@@ -1324,7 +1324,7 @@ clientGetMoreData(clientStreamNode * this, clientHttpRequest * http)
        }
        context->sc = storeClientListAdd(context->http->entry, context);
 #if DELAY_POOLS
-       delaySetStoreClient(context->http->sc, delayClient(context->http));
+       delaySetStoreClient(context->sc, delayClient(context->http));
 #endif
        assert(context->http->logType == LOG_TCP_HIT);
        context->reqofs = 0;