From: Henrik Nordstrom Date: Sat, 15 Mar 2008 19:09:52 +0000 (+0100) Subject: More complete HttpReply::clone() implementation X-Git-Tag: BASIC_TPROXY4~3^2^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f230832f3ae2023bf91c8cdc34ef2f5ee54d0df1;p=thirdparty%2Fsquid.git More complete HttpReply::clone() implementation --- diff --git a/src/HttpReply.cc b/src/HttpReply.cc index 7f8ab7f449..52c052e28a 100644 --- a/src/HttpReply.cc +++ b/src/HttpReply.cc @@ -559,5 +559,9 @@ HttpReply::clone() const rep->header.append(&header); rep->hdrCacheInit(); rep->hdr_sz = hdr_sz; + rep->http_ver = http_ver; + rep->pstate = pstate; + rep->protocol = protocol; + rep->sline = sline; return rep; }