You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@locus.apache.org on 2000/03/11 16:43:27 UTC

cvs commit: apache-2.0/src/modules/mpm/mpmt_beos mpmt_beos.c

dreid       00/03/11 07:43:27

  Modified:    src/modules/mpm/mpmt_beos mpmt_beos.c
  Log:
  This fixes a bug on a development version of BeOS.  Not sure why but
  when this is called it closes the original socket, not the accepted
  one.
  
  Revision  Changes    Path
  1.16      +2 -0      apache-2.0/src/modules/mpm/mpmt_beos/mpmt_beos.c
  
  Index: mpmt_beos.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/mpmt_beos/mpmt_beos.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- mpmt_beos.c	2000/03/10 00:07:03	1.15
  +++ mpmt_beos.c	2000/03/11 15:43:27	1.16
  @@ -765,7 +765,9 @@
               SAFE_ACCEPT(intra_mutex_off(0));
               break;
           }
  +#if B_BEOS_VERSION < 0x0460
           ap_clear_pool(ptrans);
  +#endif
       }
   
       ap_destroy_pool(tpool);