git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105368
13f79535-47bb-0310-9956-
ffa450edef68
[Remove entries to the current 2.0 section below, when backported]
+ *) mod_disk_cache: Do not store hop-by-hop headers. [Justin Erenkrantz]
+
*) mod_cache: Try to correctly follow RFC 2616 13.3 on validating stale
cache responses. [Justin Erenkrantz]
/* 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;
}