jim         98/02/22 05:50:11

  Modified:    src      CHANGES
               src/modules/standard mod_status.c
  Log:
  backout the SERVER_* in mod_status
  
  Revision  Changes    Path
  1.654     +0 -3      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.653
  retrieving revision 1.654
  diff -u -r1.653 -r1.654
  --- CHANGES   1998/02/22 04:53:57     1.653
  +++ CHANGES   1998/02/22 13:50:08     1.654
  @@ -1,8 +1,5 @@
   Changes with Apache 1.3b6
   
  -  *) Have the mod_status Status page report server version and
  -     built data [M.D. Parker <[EMAIL PROTECTED]>] PR#1448
  -
     *) [PORT] Recognize FreeBSD versions so we can use the OS regex as well
        as handling unsigned-chars for FreeBSD v3 and v2 [Andrey Chernov
        <[EMAIL PROTECTED]> and Jim] PR#1450
  
  
  
  1.74      +3 -0      apache-1.3/src/modules/standard/mod_status.c
  
  Index: mod_status.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_status.c,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- mod_status.c      1998/02/21 15:32:58     1.73
  +++ mod_status.c      1998/02/22 13:50:10     1.74
  @@ -315,8 +315,11 @@
        rputs("<HTML><HEAD>\n<TITLE>Apache Status</TITLE>\n</HEAD><BODY>\n", r);
        rputs("<H1>Apache Server Status for ", r);
        rvputs(r, server->server_hostname, "</H1>\n\n", NULL);
  +#if 0
  +     /* We don't do this until we resolve shared lib concerns */
        rvputs(r, "Server Version:", SERVER_VERSION, "<br>\n", NULL);
        rvputs(r, "Server Built:", SERVER_BUILT, "<br>\n<hr>\n", NULL);
  +#endif
        rvputs(r, "Current Time: ", asctime(localtime(&nowtime)), "<br>\n", 
NULL);
        rvputs(r, "Restart Time: ", asctime(localtime(&restart_time)), "<br>\n",
               NULL);
  
  
  

Reply via email to