You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2011/09/19 03:36:39 UTC

svn commit: r1172410 - /httpd/httpd/trunk/server/util.c

Author: covener
Date: Mon Sep 19 01:36:39 2011
New Revision: 1172410

URL: http://svn.apache.org/viewvc?rev=1172410&view=rev
Log:
Give a slightly more direct hint when no global ServerName is set. I still
think this buries the lead, but it's hard to rewrite to change the emphasis
yet maintain googleability.


Modified:
    httpd/httpd/trunk/server/util.c

Modified: httpd/httpd/trunk/server/util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util.c?rev=1172410&r1=1172409&r2=1172410&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util.c (original)
+++ httpd/httpd/trunk/server/util.c Mon Sep 19 01:36:39 2011
@@ -1983,7 +1983,8 @@ char *ap_get_local_host(apr_pool_t *a)
 
     ap_log_perror(APLOG_MARK, APLOG_ALERT|APLOG_STARTUP, 0, a,
                  "%s: Could not reliably determine the server's fully qualified "
-                 "domain name, using %s for ServerName",
+                 "domain name, using %s. Set the 'ServerName' directive globally "
+                 "to suppress this message", 
                  ap_server_argv0, server_hostname);
 
     return server_hostname;