You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2022/12/09 21:05:09 UTC

[trafficserver] branch 9.2.x updated: Remove out of bound SSL log (#9236)

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

zwoop 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 bc7c2c832 Remove out of bound SSL log (#9236)
bc7c2c832 is described below

commit bc7c2c832c782d5e25b9452b5ab89e452ec71960
Author: Serris Lew <se...@gmail.com>
AuthorDate: Fri Dec 9 08:38:32 2022 -0800

    Remove out of bound SSL log (#9236)
    
    Co-authored-by: Serris Lew <ls...@apple.com>
    (cherry picked from commit a5b56dd1ad58d547959a792cb2bcb7a19c0faac8)
---
 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 bb129cf43..b1563cc44 100644
--- a/iocore/net/SSLUtils.cc
+++ b/iocore/net/SSLUtils.cc
@@ -2317,7 +2317,7 @@ SSLMultiCertConfigLoader::load_certs_and_cross_reference_names(
         name = sk_GENERAL_NAME_value(names, i);
         if (name->type == GEN_DNS) {
           ats_scoped_str dns(asn1_strdup(name->d.dNSName));
-          Debug("ssl_load", "inserting dns '%s' in certificate: %s", dns.get(), data.cert_names_list[i].c_str());
+          Debug("ssl_load", "inserting dns '%s' in certificate", dns.get());
           name_set.insert(dns.get());
         }
       }