This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch 9.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.2.x by this push:
     new 788b041c7a Fix DbgCtl reference that got cherry-picked into 9.2.x 
(#10124)
788b041c7a is described below

commit 788b041c7a641ec7526591d512abfa00a0693619
Author: Brian Neradt <brian.ner...@gmail.com>
AuthorDate: Tue Aug 1 13:36:23 2023 -0500

    Fix DbgCtl reference that got cherry-picked into 9.2.x (#10124)
    
    9.2.x doesn't have DbgCtl yet, but we cherry-picked a patch from master
    that references it. This fixes the log to a standard Debug reference
    instead to fix the 9.2.x build. This was introduced via #10054.
---
 iocore/net/SSLUtils.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc
index 7b18fdcebf..6a6c1d34f3 100644
--- a/iocore/net/SSLUtils.cc
+++ b/iocore/net/SSLUtils.cc
@@ -2439,7 +2439,7 @@ SSLMultiCertConfigLoader::load_certs(SSL_CTX *ctx, const 
std::vector<std::string
     }
 
     if (secret_key_data.empty()) {
-      Dbg(dbg_ctl_ssl_load, "empty private key for public key %s", 
cert_names_list[i].c_str());
+      Debug("ssl_load", "empty private key for public key %s", 
cert_names_list[i].c_str());
       secret_key_data = secret_data;
     }
     if (!SSLPrivateKeyHandler(ctx, params, keyPath.c_str(), 
secret_key_data.data(), secret_key_data.size())) {

Reply via email to