summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2002-09-28 00:26:27 +0000
committerRyan Bloom <rbb@apache.org>2002-09-28 00:26:27 +0000
commit45e54694c895b3c48be696325da586e2ab21f3f8 (patch)
tree8531930102058d9fe9f4d8222960e22822cd6bcd /support
parent4139630b70d08a15f3407d2624167124c26b31fa (diff)
downloadhttpd-45e54694c895b3c48be696325da586e2ab21f3f8.tar.gz
Re-order header files in suexec.c. This adds apr.h, which is required
to get the apr macros. Other than that, it is just for clarity. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96995 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/suexec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/support/suexec.c b/support/suexec.c
index cb8e126965..1f8f3ee50e 100644
--- a/support/suexec.c
+++ b/support/suexec.c
@@ -68,7 +68,10 @@
*
*/
+#include "apr.h"
#include "ap_config.h"
+#include "suexec.h"
+
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/types.h>
@@ -82,8 +85,6 @@
#include <stdarg.h>
#include <stdlib.h>
-#include "suexec.h"
-
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif