]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
More revision-oriented fixes.
authorFrancesco Chemolli <kinkie@squid-cache.org>
Wed, 14 Sep 2011 18:25:10 +0000 (20:25 +0200)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Wed, 14 Sep 2011 18:25:10 +0000 (20:25 +0200)
src/HttpHdrCc.cc

index be62067e3b15ba87df7afa2d404f050bd29bf514..1fe637beb3fcc37fa5a1ccff9def3020995bbaca 100644 (file)
@@ -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;