You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Roy Fielding <fi...@hyperreal.com> on 1997/02/10 13:07:22 UTC

cvs commit: apache/src CHANGES mod_status.c

fielding    97/02/10 04:07:22

  Modified:    src       CHANGES mod_status.c
  Log:
  Removed extraneous blank line is description of mod_status chars.
  
  Submitted by: Kurt Kohler <ko...@ao.com> PR#167
  Reviewed by: Marc Slemko, Dean Gaudet, Roy Fielding
  
  Revision  Changes    Path
  1.154     +3 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.153
  retrieving revision 1.154
  diff -C3 -r1.153 -r1.154
  *** CHANGES	1997/02/10 11:47:24	1.153
  --- CHANGES	1997/02/10 12:07:20	1.154
  ***************
  *** 1,5 ****
  --- 1,8 ----
    Changes with Apache 1.2b7
    
  +   *) Removed extraneous blank line is description of mod_status chars.
  +      [Kurt Kohler]
  + 
      *) Logging of errors from the call_exec routine simply went nowhere,
         since the logfile fd has been closed, so now we send them to stderr.
         [Harald T. Alvestrand]
  
  
  
  1.42      +3 -3      apache/src/mod_status.c
  
  Index: mod_status.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_status.c,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -C3 -r1.41 -r1.42
  *** mod_status.c	1997/01/25 22:57:19	1.41
  --- mod_status.c	1997/02/10 12:07:21	1.42
  ***************
  *** 404,412 ****
    	rputs("\"<B><code>R</code></B>\" Reading Request,<BR>\n",r);
    	rputs("\"<B><code>W</code></B>\" Sending Reply, \n",r);
    	rputs("\"<B><code>K</code></B>\" Keepalive (read), \n",r);
  ! 	rputs("\"<B><code>D</code></B>\" DNS Lookup, \n",r);
  ! 	rputs("\"<B><code>L</code></B>\" Logging<p>\n",r);
  ! 	rputs("\"<B><code>.</code></B>\" Open slot with no current process, \n",r);
        }
    
    #if defined(STATUS)
  --- 404,412 ----
    	rputs("\"<B><code>R</code></B>\" Reading Request,<BR>\n",r);
    	rputs("\"<B><code>W</code></B>\" Sending Reply, \n",r);
    	rputs("\"<B><code>K</code></B>\" Keepalive (read), \n",r);
  ! 	rputs("\"<B><code>D</code></B>\" DNS Lookup,<BR>\n",r);
  ! 	rputs("\"<B><code>L</code></B>\" Logging, \n",r);
  ! 	rputs("\"<B><code>.</code></B>\" Open slot with no current process<P>\n",r);
        }
    
    #if defined(STATUS)