From: Amos Jeffries Date: Wed, 15 Jul 2015 16:09:06 +0000 (-0700) Subject: Fix HTTPS ports not initialized properly after rev.14148 X-Git-Tag: merge-candidate-3-v1~38^2~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49d8cc6f6b62c7f9885cee44d6c7a4171baab146;p=thirdparty%2Fsquid.git Fix HTTPS ports not initialized properly after rev.14148 --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index c68356f0af..5eafe10450 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -3669,6 +3669,7 @@ parsePortCfg(AnyP::PortCfgPointer *head, const char *optionName) } if (s->transport.protocol == AnyP::PROTO_HTTPS) { + s->secure.encryptTransport = true; #if USE_OPENSSL /* ssl-bump on https_port configuration requires either tproxy or intercept, and vice versa */ const bool hijacked = s->flags.isIntercepted();