From: Christophe Jaillet Date: Tue, 15 Jan 2013 20:20:14 +0000 (+0000) Subject: Improve error message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85def761bfe74ab555bfcc82f8651f34decc8a98;p=thirdparty%2Fapache%2Fhttpd.git 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 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) {