]> granicus.if.org Git - apache/commitdiff
Fix two spelling and syntax problems in ap_get_local_host().
authorJeff Trawick <trawick@apache.org>
Tue, 5 Dec 2000 16:18:54 +0000 (16:18 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 5 Dec 2000 16:18:54 +0000 (16:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87211 13f79535-47bb-0310-9956-ffa450edef68

server/util.c

index f4911c9b388b6a229572a3f3e049c6b295b44d1e..8234e00ba4b915fb9fabf3aa09ec713c50dfd703 100644 (file)
@@ -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);