From 85def761bfe74ab555bfcc82f8651f34decc8a98 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Tue, 15 Jan 2013 20:20:14 +0000 Subject: [PATCH] Improve error message PR 54384 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1433613 13f79535-47bb-0310-9956-ffa450edef68 --- server/protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/protocol.c b/server/protocol.c index 5163ed62320..be53dd585fc 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1056,7 +1056,7 @@ request_rec *ap_read_request(conn_rec *conn) case HTTP_NOT_IMPLEMENTED: 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) { -- 2.47.3