--------------------- PatchSet 4702 Date: 2002/08/15 23:20:04 Author: hno Branch: etag-2_5 Tag: (none) Log: More Vary/ETag index fixes (specific to 2.5) Members: src/store.c:1.12.14.20.2.3->1.12.14.20.2.4 Index: squid/src/store.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/store.c,v retrieving revision 1.12.14.20.2.3 retrieving revision 1.12.14.20.2.4 diff -u -r1.12.14.20.2.3 -r1.12.14.20.2.4 --- squid/src/store.c 15 Aug 2002 22:29:06 -0000 1.12.14.20.2.3 +++ squid/src/store.c 15 Aug 2002 23:20:04 -0000 1.12.14.20.2.4 @@ -1,6 +1,6 @@ /* - * $Id: store.c,v 1.12.14.20.2.3 2002/08/15 22:29:06 hno Exp $ + * $Id: store.c,v 1.12.14.20.2.4 2002/08/15 23:20:04 hno Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -790,7 +790,7 @@ } } debug(11, 3) ("storeLocateVaryRead: %p offset=%d seen_offset=%d\n", data, state->offset, state->seen_offset); - storeClientCopy(state->sc, state->e, state->offset, state->seen_offset, state->buf_size, state->buf, storeLocateVaryRead, state); + storeClientCopy(state->sc, state->e, state->seen_offset, state->offset, state->buf_size, state->buf, storeLocateVaryRead, state); } void @@ -812,7 +812,7 @@ state->buf = memAllocBuf(4096, &state->buf_size); state->sc = storeClientListAdd(state->e, state); state->offset = state->seen_offset = offset; - storeClientCopy(state->sc, state->e, state->offset, state->seen_offset, state->buf_size, state->buf, storeLocateVaryRead, state); + storeClientCopy(state->sc, state->e, state->seen_offset, state->offset, state->buf_size, state->buf, storeLocateVaryRead, state); } void