You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2012/07/21 20:17:10 UTC

svn commit: r1364138 - /httpd/httpd/trunk/server/mpm/winnt/child.c

Author: trawick
Date: Sat Jul 21 18:17:10 2012
New Revision: 1364138

URL: http://svn.apache.org/viewvc?rev=1364138&view=rev
Log:
Tweak a message added in r750567 so that the accept thread
logs the physical address it listens on instead of hostname|*.

Modified:
    httpd/httpd/trunk/server/mpm/winnt/child.c

Modified: httpd/httpd/trunk/server/mpm/winnt/child.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/child.c?rev=1364138&r1=1364137&r2=1364138&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/child.c (original)
+++ httpd/httpd/trunk/server/mpm/winnt/child.c Sat Jul 21 18:17:10 2012
@@ -389,9 +389,8 @@ reinit: /* target of data or connect upo
     }
 
     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) {