trunk patch: http://svn.apache.org/r1464721
Submitted by: Tianyin Xu <tixu cs ucsd edu>
Reviewed by: jailletc36, fuankg, minfrin
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1490581 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.5
+ *) mod_cache: Make option "CacheDisable" in mod_cache case insensitive PR
+ 54462 [Tianyin Xu <tixu cs ucsd edu>]
+
*) mod_cache: If a 304 response indicates an entity not currently cached, then
the cache MUST disregard the response and repeat the request without the
conditional. [Graham Leggett, Co-Advisor <coad measurement-factory.com>]
half of all new stuff, and therefore the +0.5 - I would like
to have someone else add a vote too.
- * mod_cache: Make option "CacheDisable" in mod_cache case insensitive
- PR 54462 reported by Tianyin Xu [tixu cs ucsd edu]
- trunk patch: http://svn.apache.org/r1464721
- 2.4.x patch: trunk works
- +1 jailletc36, fuankg, minfrin
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
&cache_module);
if (parms->path) {
- if (!strcmp(url, "on")) {
+ if (!strcasecmp(url, "on")) {
dconf->disable = 1;
dconf->disable_set = 1;
return NULL;