PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) cache_storage: be consistent when building a cache key value when CacheKeyBaseURL is used with
- an URL that contains a :port.
- PR 53915 [Rein Tollevik <rein basefarm.no>]
- trunk: http://svn.apache.org/r1851146
- 2.4.x patch: svn merge -c 1851146 ^/httpd/httpd/trunk .
- +1: jailletc36, jim, icing
-
*) mod_proxy_hcheck fix for BZ 60948
trunk: http://svn.apache.org/r1862014
2.4.x: svn merge -c 1862014 ^/httpd/httpd/trunk .
* language negotiated document in a different language by mistake.
*
* This code makes the assumption that the storage manager will
- * cache the req_hdrs if the response contains a Vary
- * header.
+ * cache the req_hdrs if the response contains a Vary header.
*
* RFC2616 13.6 and 14.44 describe the Vary mechanism.
*/
}
else {
if (conf->base_uri && conf->base_uri->port_str) {
- port_str = conf->base_uri->port_str;
+ port_str = apr_pstrcat(p, ":", conf->base_uri->port_str, NULL);
}
else if (conf->base_uri && conf->base_uri->hostname) {
port_str = "";