diff options
author | Stefan Fritsch <sf@apache.org> | 2011-10-09 18:35:23 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-10-09 18:35:23 +0000 |
commit | 0ddfb3e6ccf8b5bc6995b63732dc0a0fa58f8790 (patch) | |
tree | 47e100c65525f10b4b7834d13333c2fb75e9a41f /os | |
parent | cd17cd2c10f8d47e115e6c07e30b758dece17010 (diff) | |
download | httpd-0ddfb3e6ccf8b5bc6995b63732dc0a0fa58f8790.tar.gz |
Add -D DUMP_RUN_CFG option to dump some configuration items
from the parsed (or default) config. This is useful for init scripts that
need to setup temporary directories and permissions, for example if those
temporary directories are located on a ram disk.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1180681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/unix/unixd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/unix/unixd.h b/os/unix/unixd.h index 721250f372..74961c348e 100644 --- a/os/unix/unixd.h +++ b/os/unix/unixd.h @@ -73,6 +73,7 @@ AP_DECLARE_HOOK(ap_unix_identity_t *, get_suexec_identity,(const request_rec *r) typedef struct { const char *user_name; + const char *group_name; uid_t user_id; gid_t group_id; int suexec_enabled; |