From: Francesco Chemolli Date: Wed, 14 Sep 2011 18:25:10 +0000 (+0200) Subject: More revision-oriented fixes. X-Git-Tag: BumpSslServerFirst.take01~126^2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c9ce07d2fc3aa932317798fee8238b94f20fd3d;p=thirdparty%2Fsquid.git More revision-oriented fixes. --- diff --git a/src/HttpHdrCc.cc b/src/HttpHdrCc.cc index be62067e3b..1fe637beb3 100644 --- a/src/HttpHdrCc.cc +++ b/src/HttpHdrCc.cc @@ -212,10 +212,10 @@ HttpHdrCc::parse(const String & str) case CC_OTHER: - if (other.size()) - other.append(", "); + if (cc->other.size()) + cc->other.append(", "); - other.append(item, ilen); + cc->other.append(item, ilen); break;