jim         97/12/20 17:54:40

  Modified:    .        STATUS
               src/main http_main.c
  Log:
  Submitted by: Dean Gaudet
  Reviewed by: Jim Jagielski
  This patch worked for me, and I was the one who complained :)
  
  Revision  Changes    Path
  1.10      +1 -4      apachen/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /export/home/cvs/apachen/STATUS,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- STATUS    1997/12/21 01:51:53     1.9
  +++ STATUS    1997/12/21 01:54:37     1.10
  @@ -43,6 +43,7 @@
       * Ken's stage 2 of moving ap_*() to src/ap (ap_slack() move)
       * Brian Havard's [PATCH] mod_mime_magic and OS/2
       * Igor Tatarinov's [PATCH] usage patch (-V)
  +    * Dean's [PATCH] child_timeout not correctly defined
   
   Available:
   
  @@ -73,10 +74,6 @@
       * Dean's [PATCH] mod_status cleanups
        <[EMAIL PROTECTED]>
        Status: Dean +1, Jim +1
  -
  -    * Dean's [PATCH] child_timeout not correctly defined
  -     <[EMAIL PROTECTED]>
  -     Status: Jim +1, Dean +1
   
       * Dean's [PATCH] mod_info minor cleanups (take 2)
        <[EMAIL PROTECTED]>
  
  
  
  1.258     +2 -2      apachen/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/http_main.c,v
  retrieving revision 1.257
  retrieving revision 1.258
  diff -u -r1.257 -r1.258
  --- http_main.c       1997/12/20 23:54:43     1.257
  +++ http_main.c       1997/12/21 01:54:39     1.258
  @@ -224,7 +224,7 @@
   int one_process = 0;
   
   /* set if timeouts are to be handled by the children and not by the parent.
  - * i.e. child_timeouts = standalone || one_process.
  + * i.e. child_timeouts = !standalone || one_process.
    */
   static int child_timeouts;
   
  @@ -3558,7 +3558,7 @@
       suexec_enabled = init_suexec();
       server_conf = read_config(pconf, ptrans, server_confname);
   
  -    child_timeouts = standalone || one_process;
  +    child_timeouts = !standalone || one_process;
   
       if (standalone) {
        open_logs(server_conf, pconf);
  
  
  

Reply via email to