From: hno <> Date: Sun, 9 Feb 2003 00:37:36 +0000 (+0000) Subject: A small syntax fix to my change for invalid HEAD replies X-Git-Tag: SQUID_3_0_PRE1~369 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae3ec96132940dd10e75759b8d005d1e6dd7c397;p=thirdparty%2Fsquid.git A small syntax fix to my change for invalid HEAD replies --- diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index 520073fc9c..78ac15829f 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.37 2003/02/08 15:23:53 hno Exp $ + * $Id: client_side_reply.cc,v 1.38 2003/02/08 17:37:36 hno Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -1964,7 +1964,7 @@ clientReplyContext::sendMoreData (StoreIOBuffer result) * And as this is a malformed HTTP reply we cannot keep * the connection persistent */ - request->flags.proxy_keepalive = 0; + http->request->flags.proxy_keepalive = 0; StoreIOBuffer tempBuffer; assert(body_buf && body_size);