This commit is contained in:
Adam Weinberger 2014-07-29 22:29:45 +00:00
parent 9f89f8ea7e
commit d13c0532de
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=363402

View file

@ -0,0 +1,17 @@
--- ./mod_jail.c.orig 2014-07-29 18:28:40.000000000 -0400
+++ ./mod_jail.c 2014-07-29 18:28:56.000000000 -0400
@@ -336,12 +336,12 @@
if (geteuid()) {
ap_log_error(APLOG_MARK, APLOG_ALERT, 0, s,
"mod_jail can't jail when not started as root.");
- return;
+ return !OK;
}
if (chdir(cfg->jail.path) == -1) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
"mod_jail unable to chdir to %s.", cfg->jail.path);
- return;
+ return !OK;
}
if (jail(&cfg->jail) == -1) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,