From: wessels <> Date: Sat, 18 Jan 1997 13:03:26 +0000 (+0000) Subject: Split icpState->offset to ->out_offset and ->in_offset X-Git-Tag: SQUID_3_0_PRE1~5198 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d54ef230d9438fda0e461c44b493bc97f61f4c0;p=thirdparty%2Fsquid.git Split icpState->offset to ->out_offset and ->in_offset --- diff --git a/src/client_side.cc b/src/client_side.cc index 6fdd686baf..183ba3e0c7 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.82 1997/01/14 17:56:54 wessels Exp $ + * $Id: client_side.cc,v 1.83 1997/01/18 06:03:26 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -440,7 +440,7 @@ icpProcessExpired(int fd, void *data) entry->refcount++; /* EXPIRED CASE */ icpState->entry = entry; - icpState->offset = 0; + icpState->out_offset = 0; /* Register with storage manager to receive updates when data comes in. */ storeRegister(entry, fd, icpHandleIMSReply, (void *) icpState); protoDispatch(fd, url, icpState->entry, icpState->request);