From: Rajiv Desai Date: Mon, 17 Feb 2014 14:05:24 +0000 (-0800) Subject: Bug 4029: intercepted HTTPS requests bypass caching checks X-Git-Tag: SQUID_3_5_0_1~364 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c32c73ef7d67209354178247853dbb1fc9cac0c;p=thirdparty%2Fsquid.git Bug 4029: intercepted HTTPS requests bypass caching checks --- diff --git a/src/HttpRequest.cc b/src/HttpRequest.cc index de511684c5..d6dfd7410a 100644 --- a/src/HttpRequest.cc +++ b/src/HttpRequest.cc @@ -596,6 +596,7 @@ HttpRequest::maybeCacheable() switch (protocol) { case AnyP::PROTO_HTTP: + case AnyP::PROTO_HTTPS: if (!method.respMaybeCacheable()) return false;