]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 4970: excessive gnutls_certificate_credentials debug msgs (#439)
authorThomas Zajic <zlatko-github@zlatk0.net>
Fri, 19 Jul 2019 00:51:45 +0000 (00:51 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Fri, 19 Jul 2019 03:44:47 +0000 (03:44 +0000)
Also fixed destruction message text format for consistency sake and to
match scripts/find-alive.pl expectations.

Broken since commit 60fcfad.

src/security/PeerOptions.h

index 928295b0afafc8b79aedf4484ec4c5a34145f9af..e64fccc5930d0c9d134f4bcdeff84b13d36dfca4 100644 (file)
@@ -115,7 +115,7 @@ protected:
 #elif USE_GNUTLS
         debugs(83, 5, "gnutls_certificate_credentials construct, this=" << (void*)ctx);
         return Security::ContextPointer(ctx, [](gnutls_certificate_credentials_t p) {
-            debugs(83, 0, "gnutls_certificate_credentials destruct this=" << (void*)p);
+            debugs(83, 5, "gnutls_certificate_credentials destruct, this=" << (void*)p);
             gnutls_certificate_free_credentials(p);
         });
 #else