View | Details | Raw Unified | Return to bug 54384
Collapse All | Expand All

(-)server/protocol.c (-1 / +1 lines)
Lines 979-985 Link Here
979
            || r->status == HTTP_BAD_REQUEST) {
979
            || r->status == HTTP_BAD_REQUEST) {
980
            if (r->status == HTTP_REQUEST_URI_TOO_LARGE) {
980
            if (r->status == HTTP_REQUEST_URI_TOO_LARGE) {
981
                ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(00565)
981
                ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(00565)
982
                              "request failed: URI too long (longer than %d)",
982
                              "request failed: client's request-line exceeds 'LimitRequestLine' (longer than %d)",
983
                              r->server->limit_req_line);
983
                              r->server->limit_req_line);
984
            }
984
            }
985
            else if (r->method == NULL) {
985
            else if (r->method == NULL) {

Return to bug 54384