Commit 3f7dbf6b authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent 9fc81ec5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);