aboutsummaryrefslogtreecommitdiff
path: root/www/mod_jail
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2014-07-29 22:29:45 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2014-07-29 22:29:45 +0000
commitd13c0532de2bd36f8f42aed1fd94714a2406cf3d (patch)
tree3be5c1daf112bd1fbffb95296f1efce88bc743e5 /www/mod_jail
parent9f89f8ea7e53a213d5b0445566d8b727d541fb0e (diff)
downloadports-d13c0532de2bd36f8f42aed1fd94714a2406cf3d.tar.gz
ports-d13c0532de2bd36f8f42aed1fd94714a2406cf3d.zip
Notes
Diffstat (limited to 'www/mod_jail')
-rw-r--r--www/mod_jail/files/patch-mod_jail.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/www/mod_jail/files/patch-mod_jail.c b/www/mod_jail/files/patch-mod_jail.c
new file mode 100644
index 000000000000..5fccd8ad2756
--- /dev/null
+++ b/www/mod_jail/files/patch-mod_jail.c
@@ -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,