From: Jeff Trawick Date: Sat, 21 Jul 2012 18:17:10 +0000 (+0000) Subject: Tweak a message added in r750567 so that the accept thread X-Git-Tag: 2.5.0-alpha~6608 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6a5811af606eb66d3f247a1910e7190425f4d3e;p=apache Tweak a message added in r750567 so that the accept thread logs the physical address it listens on instead of hostname|*. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1364138 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index a54ee968ef..0b52775414 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -389,9 +389,8 @@ reinit: /* target of data or connect upon too many AcceptEx failures */ } ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(00334) - "Child: Accept thread listening on %s:%d using AcceptFilter %s", - lr->bind_addr->hostname ? lr->bind_addr->hostname : "*", - lr->bind_addr->port, accf_name); + "Child: Accept thread listening on %pI using AcceptFilter %s", + lr->bind_addr, accf_name); while (!shutdown_in_progress) { if (!context) {