From: Jeff Trawick Date: Tue, 5 Dec 2000 16:18:54 +0000 (+0000) Subject: Fix two spelling and syntax problems in ap_get_local_host(). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f7dbf6b163c2fe0ca310c20d6aef0cfaa2219ee;p=apache Fix two spelling and syntax problems in ap_get_local_host(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87211 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index f4911c9b38..8234e00ba4 100644 --- a/server/util.c +++ b/server/util.c @@ -1929,7 +1929,7 @@ char *ap_get_local_host(apr_pool_t *a) #endif { ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_WARNING, 0, NULL, - "%s: gethostname() failed to detemine ServerName", + "%s: gethostname() failed to determine ServerName", ap_server_argv0); } else @@ -1954,7 +1954,7 @@ char *ap_get_local_host(apr_pool_t *a) server_hostname = apr_pstrdup(a, "127.0.0.1"); ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO|APLOG_STARTUP, 0, NULL, - "%s: Could not find determine the server's fully qualified " + "%s: Could not determine the server's fully qualified " "domain name, using %s for ServerName", ap_server_argv0, server_hostname);