diff options
author | Jeff Trawick <trawick@apache.org> | 2012-07-21 20:17:10 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2012-07-21 20:17:10 +0200 |
commit | f6a5811af606eb66d3f247a1910e7190425f4d3e (patch) | |
tree | d1b03858ac81a27580b0b7d9cfdd8eb9be78a907 /server/mpm/winnt | |
parent | When -B is specified, search for a host address in the (diff) | |
download | apache2-f6a5811af606eb66d3f247a1910e7190425f4d3e.tar.xz apache2-f6a5811af606eb66d3f247a1910e7190425f4d3e.zip |
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
Diffstat (limited to 'server/mpm/winnt')
-rw-r--r-- | server/mpm/winnt/child.c | 5 |
1 files changed, 2 insertions, 3 deletions
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) { |