]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 4029: intercepted HTTPS requests bypass caching checks
authorRajiv Desai <rajiv@maginatics.com>
Mon, 17 Feb 2014 14:05:24 +0000 (06:05 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 17 Feb 2014 14:05:24 +0000 (06:05 -0800)
src/HttpRequest.cc

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