Submitted by: jorton
Reviewed by: trawick, rpluem
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@790738
13f79535-47bb-0310-9956-
ffa450edef68
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * additional (mod_perl test suite) OPT_INCLUDES compatibility
- trunk: N/A
- 2.2.x patch: http://people.apache.org/~trawick/mod_perl_more_compat.txt
- +1: trawick, jorton, rpluem
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
* inverted, such that the exposed semantics match that of
* OPT_INCNOEXEC; i.e., the bit is only enabled if exec= is *not*
* permitted. */
- return conf->opts ^ OPT_INC_WITH_EXEC;
+ if (conf->opts & OPT_INCLUDES) {
+ return conf->opts ^ OPT_INC_WITH_EXEC;
+ }
+ else {
+ return conf->opts;
+ }
}
AP_DECLARE(int) ap_allow_overrides(request_rec *r)