]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
We should pass HttpStateData's orig_request to ICAP, rather than
authorwessels <>
Wed, 8 Feb 2006 07:16:23 +0000 (07:16 +0000)
committerwessels <>
Wed, 8 Feb 2006 07:16:23 +0000 (07:16 +0000)
request, which will be different (and generate wrong URLs) if forwarding
to a parent cache.

src/http.cc

index 7d1769241a92283c9cabcdefc0ee5a060ce6f7df..7a72b2a5f0d66067da05437e06727ac428ba07b0 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: http.cc,v 1.484 2006/01/25 17:41:23 wessels Exp $
+ * $Id: http.cc,v 1.485 2006/02/08 00:16:23 wessels Exp $
  *
  * DEBUG: section 11    Hypertext Transfer Protocol (HTTP)
  * AUTHOR: Harvest Derived
@@ -2020,7 +2020,7 @@ HttpStateData::icapAclCheckDone(ICAPServiceRep::Pointer service)
         return;
     }
 
-    icap->startRespMod(this, request, reply);
+    icap->startRespMod(this, orig_request, reply);
     processReplyBody();
 }