]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 4029: intercepted HTTPS requests bypass caching checks
authorRajiv Desai <rajiv@maginatics.com>
Tue, 18 Feb 2014 08:55:52 +0000 (01:55 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Tue, 18 Feb 2014 08:55:52 +0000 (01:55 -0700)
src/HttpRequest.cc

index dc18b3351517c0a4db0d3b70ca570bde2a17d1a1..ce6c411d0bdf0c95b1aaba84e18fdc180c99421f 100644 (file)
@@ -596,6 +596,7 @@ HttpRequest::maybeCacheable()
 
     switch (protocol) {
     case AnyP::PROTO_HTTP:
+    case AnyP::PROTO_HTTPS:
         if (!method.respMaybeCacheable())
             return false;