From 3551687e26cfe3e6dcf44a429a0836cbfaf5a5e2 Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Sun, 21 Jan 2001 14:52:12 +0000 Subject: [PATCH] Add headers needed for getpwnam & getgrnam prototypes & types. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87777 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm_common.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/server/mpm_common.c b/server/mpm_common.c index 375eadd7915..83d339e9586 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -78,6 +78,13 @@ #include "mpm.h" #include "mpm_common.h" +#ifdef HAVE_PWD_H +#include +#endif +#ifdef HAVE_GRP_H +#include +#endif + #ifdef MPM_NEEDS_RECLAIM_CHILD_PROCESSES void ap_reclaim_child_processes(int terminate) { -- 2.47.3