From: Christos Tsantilas Date: Fri, 15 Jan 2016 18:34:09 +0000 (+0200) Subject: Cert validadator fix: Currently it is always disabled X-Git-Tag: SQUID_4_0_5~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9404c152d0701fdb1c61c9fbdb3edf6621ebaa68;p=thirdparty%2Fsquid.git Cert validadator fix: Currently it is always disabled --- diff --git a/src/ssl/PeerConnector.cc b/src/ssl/PeerConnector.cc index 2cd7901361..2f0199d928 100644 --- a/src/ssl/PeerConnector.cc +++ b/src/ssl/PeerConnector.cc @@ -42,7 +42,7 @@ Ssl::PeerConnector::PeerConnector(const Comm::ConnectionPointer &aServerConn, As callback(aCallback), negotiationTimeout(timeout), startTime(squid_curtime), - useCertValidator_(false) + useCertValidator_(true) { // if this throws, the caller's cb dialer is not our CbDialer Must(dynamic_cast(callback->getDialer()));