You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by aa...@apache.org on 2001/12/07 19:19:16 UTC

cvs commit: httpd-2.0 CHANGES

aaron       01/12/07 10:19:16

  Modified:    server/mpm/perchild perchild.c
               .        CHANGES
  Log:
  Fix bug that could potentially prevent perchild from working with
  more than one vhost/uid.
  
  Revision  Changes    Path
  1.90      +1 -1      httpd-2.0/server/mpm/perchild/perchild.c
  
  Index: perchild.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/perchild/perchild.c,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- perchild.c	2001/12/07 18:14:43	1.89
  +++ perchild.c	2001/12/07 18:19:16	1.90
  @@ -1740,7 +1740,7 @@
   {
       int i;
       int max_this_time = atoi(num) + curr_child_num;
  -    for (i = curr_child_num; i < max_this_time; i++, curr_child_num++); {
  +    for (i = curr_child_num; i < max_this_time; i++, curr_child_num++) {
           child_info_t *ug = &child_info_table[i - 1];
   
           if (i > num_daemons) {
  
  
  
  1.470     +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.469
  retrieving revision 1.470
  diff -u -r1.469 -r1.470
  --- CHANGES	2001/12/07 17:48:36	1.469
  +++ CHANGES	2001/12/07 18:19:16	1.470
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.30-dev
   
  +  *) Fix bug that could potentially prevent the perchild MPM from
  +     working with more than one vhost/uid.  [Aaron Bannert]
  +
     *) Change make install processing of DSO modules to perform special
        handling on platforms where libtool doesn't install mod_foo.so.
        This fixes some wonkiness on HP-UX, Tru64, and AIX which