From: Rajiv Desai Date: Tue, 18 Feb 2014 08:55:52 +0000 (-0700) Subject: Bug 4029: intercepted HTTPS requests bypass caching checks X-Git-Tag: SQUID_3_4_4~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43969dfb3296cf7f0514482dffd3ad82d96bb03a;p=thirdparty%2Fsquid.git Bug 4029: intercepted HTTPS requests bypass caching checks --- diff --git a/src/HttpRequest.cc b/src/HttpRequest.cc index dc18b33515..ce6c411d0b 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;