From 7e66ef81fa2bf6c0492412a7de4e39b607317668 Mon Sep 17 00:00:00 2001 From: Dirk-Willem van Gulik Date: Mon, 11 Feb 2008 15:38:47 +0000 Subject: [PATCH] Reduce the WARNING to a DEBUG when SNI support is enabled. This is because a) during SNI such is normal and b) regardless when overlap is detected there will always be a warning: [warn] Init: Name-based SSL virtual hosts only work for clients with TLS server name indication support (RFC 4366) at the end of the cycle. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@620505 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_init.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/ssl/ssl_engine_init.c b/modules/ssl/ssl_engine_init.c index 87ccf2bbaa..71a950d31a 100644 --- a/modules/ssl/ssl_engine_init.c +++ b/modules/ssl/ssl_engine_init.c @@ -1090,7 +1090,13 @@ void ssl_init_CheckServers(server_rec *base_server, apr_pool_t *p) klen = strlen(key); if ((ps = (server_rec *)apr_hash_get(table, key, klen))) { - ap_log_error(APLOG_MARK, APLOG_WARNING, 0, + ap_log_error(APLOG_MARK, +#ifdef OPENSSL_NO_TLSEXT + APLOG_WARNING, +#else + APLOG_DEBUG, +#endif + 0, base_server, #ifdef OPENSSL_NO_TLSEXT "Init: SSL server IP/port conflict: " -- 2.40.0