]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backports: r1433613
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 22 Dec 2016 19:35:49 +0000 (19:35 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 22 Dec 2016 19:35:49 +0000 (19:35 +0000)
Submitted by: jailletc36
Improve error message
PR 54384

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x-merge-http-strict@1775715 13f79535-47bb-0310-9956-ffa450edef68

server/protocol.c

index bbfcf86f712868b60fa87c7df69aab14f159acb9..93abb911d10bffbc224f4350d91b9f63aff55444 100644 (file)
@@ -976,7 +976,7 @@ request_rec *ap_read_request(conn_rec *conn)
             || r->status == HTTP_BAD_REQUEST) {
             if (r->status == HTTP_REQUEST_URI_TOO_LARGE) {
                 ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
-                              "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) {