diff options
author | Rainer Jung <rjung@apache.org> | 2010-06-15 11:33:20 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2010-06-15 11:33:20 +0200 |
commit | 90a12694f8276fa9de2a77b18d6f79a270363b0b (patch) | |
tree | e940ade98fae9df2cb4bf7cd179c962aee3e57b9 /os/unix/unixd.h | |
parent | correct stupid mistake (diff) | |
download | apache2-90a12694f8276fa9de2a77b18d6f79a270363b0b.tar.xz apache2-90a12694f8276fa9de2a77b18d6f79a270363b0b.zip |
The directives "User", "Group" and "ChrootDir" have
been moved into mod_unixd.
The old macro UNIX_DAEMON_COMMANDS is no longer in use.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@954783 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | os/unix/unixd.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/os/unix/unixd.h b/os/unix/unixd.h index 882dd5f5ea..c9d6ea96a2 100644 --- a/os/unix/unixd.h +++ b/os/unix/unixd.h @@ -107,14 +107,6 @@ AP_DECLARE(apr_status_t) ap_unixd_accept(void **accepted, ap_listen_rec *lr, apr #define ap_os_killpg(x, y) (kill (-(x), (y))) #endif /* HAVE_KILLPG */ -#define UNIX_DAEMON_COMMANDS \ -AP_INIT_TAKE1("User", unixd_set_user, NULL, RSRC_CONF, \ - "Effective user id for this server"), \ -AP_INIT_TAKE1("Group", unixd_set_group, NULL, RSRC_CONF, \ - "Effective group id for this server"), \ -AP_INIT_TAKE1("ChrootDir", unixd_set_chroot_dir, NULL, RSRC_CONF, \ - "The directory to chroot(2) into") - #ifdef __cplusplus } #endif |