]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Audit updates on rev.11634
authorAlex Rousskov <rousskov@squid-cache.org>
Mon, 15 Aug 2011 22:21:03 +0000 (16:21 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 15 Aug 2011 22:21:03 +0000 (16:21 -0600)
src/ChunkedCodingParser.cc

index 9a1613e8d7e85e8a4a98f34b5f79b0f46fe68c13..bd2fdd1cde65e8135cf5f6c5f614a60f9601b7e9 100644 (file)
@@ -159,10 +159,10 @@ void ChunkedCodingParser::parseTrailerHeader()
     size_t crlfEnd = 0;
 
     if (findCrlf(crlfBeg, crlfEnd)) {
-#if NOTYET
-        if (crlfBeg > 0)
 
-            ; //theTrailer.append(theIn->content(), crlfEnd);
+#if TRAILERS_ARE_SUPPORTED
+        if (crlfBeg > 0)
+            theTrailer.append(theIn->content(), crlfEnd);
 #endif
 
         theIn->consume(crlfEnd);