From: wessels <> Date: Sat, 23 May 1998 05:13:44 +0000 (+0000) Subject: compiler X-Git-Tag: SQUID_3_0_PRE1~3274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5af6be2876d9e2c73b41d8ce157f3ea22dcdbbf;p=thirdparty%2Fsquid.git compiler --- diff --git a/src/HttpReply.cc b/src/HttpReply.cc index ee62e8fbdd..244e6cae61 100644 --- a/src/HttpReply.cc +++ b/src/HttpReply.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpReply.cc,v 1.22 1998/05/22 22:38:42 wessels Exp $ + * $Id: HttpReply.cc,v 1.23 1998/05/22 23:13:44 wessels Exp $ * * DEBUG: section 58 HTTP Reply (Response) * AUTHOR: Alex Rousskov @@ -430,7 +430,7 @@ httpMsgIsPersistent(float http_ver, const HttpHeader * hdr) * return false if it is a browser connection. If there is a * VIA header, then we assume this is NOT a browser connection. */ - const char *agent; = httpHeaderGetStr(hdr, HDR_USER_AGENT); + const char *agent = httpHeaderGetStr(hdr, HDR_USER_AGENT); if (agent && !httpHeaderHas(hdr, HDR_VIA)) { if (!strncasecmp(agent, "Mozilla/3.", 10)) return 0;