marc        98/09/03 10:09:31

  Modified:    src/main util.c
  Log:
  Since people have trouble with the concept that an error from a web
  server telling you to set something may mean you should set it in
  your config files, be a bit more explicit.
  
  Revision  Changes    Path
  1.131     +1 -1      apache-1.3/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.130
  retrieving revision 1.131
  diff -u -r1.130 -r1.131
  --- util.c    1998/08/06 19:13:53     1.130
  +++ util.c    1998/09/03 17:09:30     1.131
  @@ -1621,7 +1621,7 @@
       str[MAXHOSTNAMELEN] = '\0';
       if ((!(p = gethostbyname(str))) || (!(server_hostname = find_fqdn(a, 
p)))) {
        fprintf(stderr, "httpd: cannot determine local host name.\n");
  -     fprintf(stderr, "Use ServerName to set it manually.\n");
  +     fprintf(stderr, "Use the ServerName directive to set it manually.\n");
        exit(1);
       }
   
  
  
  

Reply via email to