1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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,
|