summaryrefslogtreecommitdiffstats
path: root/modules/arch
diff options
context:
space:
mode:
Diffstat (limited to 'modules/arch')
-rw-r--r--modules/arch/unix/mod_unixd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/arch/unix/mod_unixd.c b/modules/arch/unix/mod_unixd.c
index 442dffc137..d30ac4f1ab 100644
--- a/modules/arch/unix/mod_unixd.c
+++ b/modules/arch/unix/mod_unixd.c
@@ -19,6 +19,7 @@
#include "http_config.h"
#include "http_main.h"
#include "http_log.h"
+#include "http_core.h"
#include "mpm_common.h"
#include "os.h"
#include "ap_mpm.h"
@@ -377,6 +378,8 @@ static void unixd_dump_config(apr_pool_t *p, server_rec *s)
apr_uid_t uid = ap_unixd_config.user_id;
apr_gid_t gid = ap_unixd_config.group_id;
char *no_root = "";
+ if (!ap_exists_config_define("DUMP_RUN_CFG"))
+ return;
if (geteuid() != 0)
no_root = " not_used";
apr_file_open_stdout(&out, p);