From e74f8021141132484b4b8e21bbc5ac271c7735d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 09:57:19 -0500 Subject: [PATCH] Automated change: Fix sanity tests (#62) Co-authored-by: matthewstevenson88 --- src/core/tsi/ssl_transport_security.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/tsi/ssl_transport_security.cc b/src/core/tsi/ssl_transport_security.cc index 84ac669d9f2..f85080be2b6 100644 --- a/src/core/tsi/ssl_transport_security.cc +++ b/src/core/tsi/ssl_transport_security.cc @@ -275,7 +275,8 @@ static tsi_result ssl_get_x509_common_name(X509* cert, unsigned char** utf8, common_name_index = X509_NAME_get_index_by_NID(subject_name, NID_commonName, -1); if (common_name_index == -1) { - gpr_log(GPR_DEBUG, "Could not get common name of subject from certificate."); + gpr_log(GPR_DEBUG, + "Could not get common name of subject from certificate."); return TSI_NOT_FOUND; } common_name_entry = X509_NAME_get_entry(subject_name, common_name_index);