manoj       99/04/08 19:31:24

  Modified:    .        STATUS
               pthreads/src CHANGES
               pthreads/src/modules/standard mod_info.c
  Log:
  Submitted by: James Morris <[EMAIL PROTECTED]>
  Fix to ap_rprintf call that allows mod_info to work properly
  
  Revision  Changes    Path
  1.19      +1 -2      apache-apr/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/apache-apr/STATUS,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -u -r1.18 -r1.19
  --- STATUS    1999/04/08 08:53:46     1.18
  +++ STATUS    1999/04/09 02:31:21     1.19
  @@ -1,5 +1,5 @@
   Apache Portable Runtime STATUS:
  -Last modified at [$Date: 1999/04/08 08:53:46 $]
  +Last modified at [$Date: 1999/04/09 02:31:21 $]
   
   Release:
   
  @@ -29,7 +29,6 @@
        Modules that don't work:
               mod_digest.c     --Anybody have a client that can transmit Digest
                               Auth?
  -         mod_info.c       --DOES NOT WORK AT ALL! 
   
        Questionable modules: (Not tested.)         
            mod_log_agent.c   -- Are we keeping these in 2.0 after Ken's
  
  
  
  1.5       +3 -0      apache-apr/pthreads/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/CHANGES,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- CHANGES   1999/04/08 14:37:15     1.4
  +++ CHANGES   1999/04/09 02:31:22     1.5
  @@ -1,5 +1,8 @@
   Changes with Apache apr
   
  +  *) Fix to ap_rprintf call that allows mod_info to work properly [James
  +     Morris <[EMAIL PROTECTED]>]
  +
     *) user and ap_auth_type fields were moved from connection_rec to 
        request_rec. [Ryan Bloom [EMAIL PROTECTED] 
   
  
  
  
  1.5       +2 -1      apache-apr/pthreads/src/modules/standard/mod_info.c
  
  Index: mod_info.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/modules/standard/mod_info.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- mod_info.c        1999/04/09 02:14:23     1.4
  +++ mod_info.c        1999/04/09 02:31:24     1.5
  @@ -425,7 +425,8 @@
               ap_rprintf(r, "<strong>Max Requests:</strong> "
                           "<tt>per child: %d &nbsp;&nbsp; "
                           "keep alive: %s &nbsp;&nbsp; "
  -                        "max per connection: </tt><br>\n",
  +                        "max per connection: %d</tt><br>\n",
  +                        ap_max_requests_per_child,
                           (serv->keep_alive ? "on" : "off"),
                           serv->keep_alive_max);
               ap_rprintf(r, "<strong>Threads:</strong> "
  
  
  

Reply via email to