This is an automated email from the ASF dual-hosted git repository.
maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new dce125c36f Remove a false comment (#11630)
dce125c36f is described below
commit dce125c36f3b79f9cc278ae193c44b7bd7b37ccd
Author: Masakazu Kitajo <[email protected]>
AuthorDate: Tue Jul 30 17:09:11 2024 -0600
Remove a false comment (#11630)
---
src/iocore/net/SSLUtils.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/iocore/net/SSLUtils.cc b/src/iocore/net/SSLUtils.cc
index 4795a8f092..dc17849934 100644
--- a/src/iocore/net/SSLUtils.cc
+++ b/src/iocore/net/SSLUtils.cc
@@ -1117,7 +1117,7 @@ void
SSLMultiCertConfigLoader::_set_handshake_callbacks(SSL_CTX *ctx)
{
// Make sure the callbacks are set
-#if !HAVE_SSL_CTX_SET_SELECT_CERTIFICATE_CB // For OpenSSL < 1.1.1, we should
be able to remove this
+#if !HAVE_SSL_CTX_SET_SELECT_CERTIFICATE_CB
SSL_CTX_set_cert_cb(ctx, ssl_cert_callback, nullptr);
SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_callback);
#endif