From 6a8f3b9465c14651092fcc17c7e00edcd9ccb035 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Mon, 13 Aug 2012 11:29:13 +0000 Subject: [PATCH] mpm_winnt: Tweak a message added in r750567 so that the accept thread logs the physical address it listens on instead of hostname|*. Backport of r1364138 from trunk. Submitted by: trawick Reviewed by: rjung, humbedooh Backported by: rjung git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1372370 13f79535-47bb-0310-9956-ffa450edef68 --- STATUS | 6 ------ server/mpm/winnt/child.c | 5 ++--- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/STATUS b/STATUS index a80697bc61..89638947ce 100644 --- a/STATUS +++ b/STATUS @@ -88,12 +88,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - * mpm_winnt: Tweak a message added in r750567 so that the accept thread - logs the physical address it listens on instead of hostname|*. - trunk patch: http://svn.apache.org/viewvc?view=rev&rev=1364138 - 2.4.x patch: trunk patch works - +1: rjung, trawick, humbedooh - * htpasswd: Use correct file mode for checking if file is writable. Also switch to the non-deprecated APR_FOPEN_* flags. PR: 45923 diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 2e42071fed..8859fac319 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -352,9 +352,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) { -- 2.50.1