PR54223: 2.4 generates AH00554 when Include points to a directory with no wildcard.
r931435 refactored ap_process_resource_config() so it didn't read through
directories, but also changed a path non-fnmatch directories are passed
through to call ap_process_resource_config().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1416747 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.4
+ *) core: Don't fail at startup with AH00554 when Include points to
+ a directory without any wildcard character. [Eric Covener]
+
*) core: Fail startup if the argument to ServerTokens is unrecognized.
[Jackie Zhang <jackie.qq.zhang gmail.com>]
2.4.x patch: http://people.apache.org/~jailletc36/backport_mod_dumpio.patch
+1: jailletc36, sf, druggeri
- * core: Accept "Include /some/dir" without wildcards as documented,
- regression from 2.2.x. PR54223
- trunk patch: http://svn.apache.org/viewvc?rev=1415023&view=rev
- 2.4.x patch: 2.4.x works
- +1: covener, jim, druggeri
-
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
}
if (!apr_fnmatch_test(fname)) {
- return ap_process_resource_config(s, fname, conftree, p, ptemp);
+ return process_resource_config_nofnmatch(s, fname, conftree, p, ptemp, 0, optional);
}
else {
apr_status_t status;