From 15e34409cb400ea4ea2feeced02a520677430db6 Mon Sep 17 00:00:00 2001 From: Randall Meyer Date: Wed, 1 Sep 2021 13:48:09 -0700 Subject: [PATCH] Truly treat multiple certs with the same SAN as a warning --- iocore/net/SSLUtils.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc index 5478cf12571..43b463564f8 100644 --- a/iocore/net/SSLUtils.cc +++ b/iocore/net/SSLUtils.cc @@ -1701,7 +1701,6 @@ SSLMultiCertConfigLoader::_store_ssl_ctx(SSLCertLookup *lookup, const shared_SSL for (const auto &loadingctx : ctxs) { shared_SSL_CTX ctx(loadingctx.ctx, SSL_CTX_free); if (!sslMultCertSettings || !this->_store_single_ssl_ctx(lookup, sslMultCertSettings, ctx, loadingctx.ctx_type, common_names)) { - retval = false; std::string names; for (auto const &name : data.cert_names_list) { names.append(name);