From 7f41607ec571bb49ae194cf6c7d5165ff03f1f75 Mon Sep 17 00:00:00 2001 From: Randall Meyer Date: Thu, 2 Sep 2021 09:11:10 -0700 Subject: [PATCH] Truly treat multiple certs with the same SAN as a warning (#8303) (cherry picked from commit 5c75a3052e1022662f06ea2b7d8139bb01e32f9b) Conflicts: iocore/net/SSLUtils.cc --- iocore/net/SSLUtils.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc index de2e436aeb7..13067cb3149 100644 --- a/iocore/net/SSLUtils.cc +++ b/iocore/net/SSLUtils.cc @@ -1408,7 +1408,6 @@ SSLMultiCertConfigLoader::_store_ssl_ctx(SSLCertLookup *lookup, const shared_SSL shared_SSL_CTX ctx(this->init_server_ssl_ctx(data, sslMultCertSettings.get(), common_names), SSL_CTX_free); if (!ctx || !sslMultCertSettings || !this->_store_single_ssl_ctx(lookup, sslMultCertSettings, ctx, common_names)) { - retval = false; std::string names; for (auto name : data.cert_names_list) { names.append(name);