From: Christophe Jaillet Date: Tue, 15 Jan 2013 20:20:14 +0000 (+0000) Subject: Improve error message X-Git-Tag: 2.5.0-alpha~5880 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1731e8c0b5e541613bd3672554acb5a590dbd6b3;p=apache Improve error message PR 54384 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1433613 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 5163ed6232..be53dd585f 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) {