diff options
author | Eric Covener <covener@apache.org> | 2008-12-03 22:14:50 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2008-12-03 22:14:50 +0100 |
commit | 1691affda8674b28e5f023af6f22bbf3c1cef149 (patch) | |
tree | 67fad182e1c16718e122cd37e262a5e2dfacde3e /modules/arch/unix/mod_privileges.c | |
parent | trivial typo (diff) | |
download | apache2-1691affda8674b28e5f023af6f22bbf3c1cef149.tar.xz apache2-1691affda8674b28e5f023af6f22bbf3c1cef149.zip |
unixd_config/ap_unixd_config rename for mod_privileges
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723078 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/arch/unix/mod_privileges.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/arch/unix/mod_privileges.c b/modules/arch/unix/mod_privileges.c index b274606169..f1b52d8b7a 100644 --- a/modules/arch/unix/mod_privileges.c +++ b/modules/arch/unix/mod_privileges.c @@ -100,7 +100,7 @@ static apr_status_t privileges_end_req(void *data) &privileges_module); /* ugly hack: grab default uid and gid from unixd */ - extern unixd_config_rec unixd_config; + extern unixd_config_rec ap_unixd_config; /* if either user or group are not the default, restore them */ if (cfg->uid || cfg->gid) { @@ -108,11 +108,11 @@ static apr_status_t privileges_end_req(void *data) ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "PRIV_ON failed restoring default user/group"); } - if (cfg->uid && (setuid(unixd_config.user_id) == -1)) { + if (cfg->uid && (setuid(ap_unixd_config.user_id) == -1)) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "Error restoring default userid"); } - if (cfg->gid && (setgid(unixd_config.group_id) == -1)) { + if (cfg->gid && (setgid(ap_unixd_config.group_id) == -1)) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "Error restoring default group"); } |