Changes with Apache 2.0.53
+ *) mod_disk_cache: Do not store hop-by-hop headers. [Justin Erenkrantz]
+
*) Fix the re-linking issue when purging elements from the LDAP cache
PR 24801 [Jess Holle <jessh ptc.com>]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/10/02 19:49:22 $]
+Last modified at [$Date: 2004/10/02 20:03:43 $]
Release:
modules/experimental/mod_mem_cache.c?r1=1.117&r2=1.118
+1: stoddard, jerenkrantz
- *) mod_disk_cache: Do not store hop-by-hop headers.
- modules/experimental/mod_disk_cache.c?r1=1.65&r2=1.66
- +1: jerenkrantz, jwoolley, trawick
-
*) mod_rewrite: Fix 0 bytes write into random memory position. PR 31036.
(2.0 + 1.3)
http://www.apache.org/~nd/dbmmap_1.3.patch
/* Make call to the same thing cache_select_url calls to crack Vary. */
/* @@@ Some day, not today. */
if (r->headers_in) {
- rv = store_table(dobj->hfd, r->headers_in);
+ apr_table_t *headers_in;
+
+ headers_in = ap_cache_cacheable_hdrs_out(r->pool, r->headers_in);
+ rv = store_table(dobj->hfd, headers_in);
if (rv != APR_SUCCESS) {
return rv;
}