From 9404c152d0701fdb1c61c9fbdb3edf6621ebaa68 Mon Sep 17 00:00:00 2001 From: Christos Tsantilas Date: Fri, 15 Jan 2016 20:34:09 +0200 Subject: [PATCH] Cert validadator fix: Currently it is always disabled --- src/ssl/PeerConnector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())); -- 2.47.2