]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix BodyPipe debugging in handleChunkedRequestBody() (#2224)
authorJoshua Rogers <MegaManSec@users.noreply.github.com>
Tue, 9 Sep 2025 08:18:25 +0000 (08:18 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Tue, 9 Sep 2025 08:18:28 +0000 (08:18 +0000)
src/client_side.cc

index cb48faba4717daa5a3d736e1e022eeb2cc1d57a7..443153e705abbc2b15f01f04c335d3951b781550 100644 (file)
@@ -2025,7 +2025,7 @@ ConnStateData::handleChunkedRequestBody()
         return ERR_INVALID_REQ;
     }
 
-    debugs(33, 7, "need more chunked data" << *bodyPipe->status());
+    debugs(33, 7, "need more chunked data" << bodyPipe->status());
     return ERR_NONE;
 }