From: Amos Jeffries Date: Tue, 31 Jan 2017 15:30:19 +0000 (+1300) Subject: Add debugs for loading the system CA set X-Git-Tag: M-staged-PR71~284^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dfe70a1b18a237a6a619d44470cc042d2b94fced;p=thirdparty%2Fsquid.git Add debugs for loading the system CA set --- diff --git a/src/security/PeerOptions.cc b/src/security/PeerOptions.cc index 0aa2b53313..304821cf90 100644 --- a/src/security/PeerOptions.cc +++ b/src/security/PeerOptions.cc @@ -621,6 +621,7 @@ Security::PeerOptions::updateContextNpn(Security::ContextPointer &ctx) static const char * loadSystemTrustedCa(Security::ContextPointer &ctx) { + debugs(83, 8, "Setting default system Trusted CA. ctx=" << (void*)ctx.get()); #if USE_OPENSSL if (SSL_CTX_set_default_verify_paths(ctx.get()) == 0) return Security::ErrorString(ERR_get_error());