You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/12/05 17:18:55 UTC

cvs commit: httpd-2.0/server util.c

trawick     00/12/05 08:18:55

  Modified:    server   util.c
  Log:
  Fix two spelling and syntax problems in ap_get_local_host().
  
  Revision  Changes    Path
  1.83      +2 -2      httpd-2.0/server/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/util.c,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- util.c	2000/11/26 04:47:30	1.82
  +++ util.c	2000/12/05 16:18:54	1.83
  @@ -1929,7 +1929,7 @@
   #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 @@
           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);