You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/01/10 20:34:37 UTC

svn commit: r1057329 - /httpd/httpd/trunk/modules/generators/mod_status.c

Author: sf
Date: Mon Jan 10 19:34:37 2011
New Revision: 1057329

URL: http://svn.apache.org/viewvc?rev=1057329&view=rev
Log:
clarify that the displayed IP address may not be the public address,
as suggested by wrowe

Modified:
    httpd/httpd/trunk/modules/generators/mod_status.c

Modified: httpd/httpd/trunk/modules/generators/mod_status.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/generators/mod_status.c?rev=1057329&r1=1057328&r2=1057329&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/generators/mod_status.c (original)
+++ httpd/httpd/trunk/modules/generators/mod_status.c Mon Jan 10 19:34:37 2011
@@ -376,7 +376,7 @@ static int status_handler(request_rec *r
                  "<html><head>\n<title>Apache Status</title>\n</head><body>\n",
                  r);
         ap_rputs("<h1>Apache Server Status for ", r);
-        ap_rvputs(r, ap_get_server_name(r), " (", r->connection->local_ip,
+        ap_rvputs(r, ap_get_server_name(r), " (via ", r->connection->local_ip,
                   ")</h1>\n\n", NULL);
         ap_rvputs(r, "<dl><dt>Server Version: ",
                   ap_get_server_description(), "</dt>\n", NULL);