]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Add debugs for loading the system CA set
authorAmos Jeffries <squid3@treenet.co.nz>
Tue, 31 Jan 2017 15:30:19 +0000 (04:30 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Tue, 31 Jan 2017 15:30:19 +0000 (04:30 +1300)
src/security/PeerOptions.cc

index 0aa2b5331319ea38118445a9bdb8643d7f1d3939..304821cf903c2a4b161758f944228b6e459c3ea2 100644 (file)
@@ -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());