You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@apache.org on 2001/01/21 15:52:13 UTC

cvs commit: httpd-2.0/server mpm_common.c

bjh         01/01/21 06:52:13

  Modified:    server   mpm_common.c
  Log:
  Add headers needed for getpwnam & getgrnam prototypes & types.
  
  Revision  Changes    Path
  1.37      +7 -0      httpd-2.0/server/mpm_common.c
  
  Index: mpm_common.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm_common.c,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- mpm_common.c	2001/01/20 06:05:15	1.36
  +++ mpm_common.c	2001/01/21 14:52:12	1.37
  @@ -78,6 +78,13 @@
   #include "mpm.h"
   #include "mpm_common.h"
   
  +#ifdef HAVE_PWD_H
  +#include <pwd.h>
  +#endif
  +#ifdef HAVE_GRP_H
  +#include <grp.h>
  +#endif
  +
   #ifdef MPM_NEEDS_RECLAIM_CHILD_PROCESSES
   void ap_reclaim_child_processes(int terminate)
   {