Changes with Apache 2.4.11
+ *) mod_cache: Avoid sending 304 responses during failed revalidations
+ PR56881. [Eric Covener]
+
*) mod_status: Honor client IP address using mod_remoteip. PR 55886.
[Jim Jagielski]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_cache: Avoid sending a 304 to an unconditional request during a
- revalidation. PR56881
- trunk patch: http://svn.apache.org/r1619835
- http://svn.apache.org/r1620461
- 2.4.x patch: trunk works
- +1: covener, jim, ylavic
-
* core: Add missing va_end spotted by cppcheck
various: Silent some cppcheck warnings
trunk patch: http://svn.apache.org/r1619297
apr_table_unset(r->headers_in, "If-Range");
apr_table_unset(r->headers_in, "If-Unmodified-Since");
+ /* Currently HTTP_NOT_MODIFIED, and after the redirect, handlers won't think to set status to HTTP_OK */
+ r->status = HTTP_OK;
ap_internal_redirect(r->unparsed_uri, r);
return APR_SUCCESS;