--------------------- PatchSet 4932 Date: 2002/09/09 12:36:13 Author: rbcollins Branch: esi Tag: (none) Log: 304 minor bugfix Members: src/client_side_reply.c:1.1.2.20->1.1.2.21 Index: squid/src/client_side_reply.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/Attic/client_side_reply.c,v retrieving revision 1.1.2.20 retrieving revision 1.1.2.21 diff -u -r1.1.2.20 -r1.1.2.21 --- squid/src/client_side_reply.c 28 Aug 2002 06:11:30 -0000 1.1.2.20 +++ squid/src/client_side_reply.c 9 Sep 2002 12:36:13 -0000 1.1.2.21 @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.c,v 1.1.2.20 2002/08/28 06:11:30 rbcollins Exp $ + * $Id: client_side_reply.c,v 1.1.2.21 2002/09/09 12:36:13 rbcollins Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -388,7 +388,7 @@ entry = http->entry; /* here the data to send is in the next nodes buffers already */ assert(!EBIT_TEST(entry->flags, ENTRY_ABORTED)); - clientSendMoreData(context, context->tempbuf, context->reqsize); + clientSendMoreData(context, next->readbuf, context->reqsize); } else { clientStreamNode *next; /* the client can handle this reply, whatever it is */ @@ -406,7 +406,7 @@ assert(!EBIT_TEST(entry->flags, ENTRY_ABORTED)); next = context->http->client_stream.head->next->data; /* TODO: provide SendMoreData with the ready parsed reply */ - clientSendMoreData(context, next->readbuf, context->reqsize); + clientSendMoreData(context, context->tempbuf, context->reqsize); } }