PR 54384
trunk patch: http://svn.apache.org/r1433613
Submitted by: jailletc36
Reviewed by: minfrin, jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1481512 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.5
+ *) core: Improve error message where client's request-line exceeds
+ LimitRequestLine. PR 54384 [Christophe Jaillet]
+
*) mod_macro: New module that provides macros within configuration files.
[Fabien Coelho]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
-
- * core: Improve error message where client's request-line exceeds LimitRequestLine
- PR 54384
- trunk patch: http://svn.apache.org/r1433613
- 2.4.x patch: trunk patch applies
- +1: minfrin, jim, jailletc36
-
* mod_dav: Do not segfault on PROPFIND with a zero length DBM. PR 52559
trunk patch: http://svn.apache.org/r1476645
2.4.x patch: trunk patch works (minus CHANGES)
|| r->status == HTTP_BAD_REQUEST) {
if (r->status == HTTP_REQUEST_URI_TOO_LARGE) {
ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(00565)
- "request failed: URI too long (longer than %d)",
+ "request failed: client's request-line exceeds LimitRequestLine (longer than %d)",
r->server->limit_req_line);
}
else if (r->method == NULL) {