From: Kaspar Brand Date: Tue, 1 Oct 2013 06:24:29 +0000 (+0000) Subject: PR 55616 (add missing APLOGNO), part 1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89ee4a7ad47d7f350b4cd4586d9e2aae5f7eec95;p=thirdparty%2Fapache%2Fhttpd.git PR 55616 (add missing APLOGNO), part 1 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1527925 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index 166c7ce5e94..983711d6f2d 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -2539 +2540 diff --git a/server/protocol.c b/server/protocol.c index 86be1b6dc0c..453428e77b2 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1114,7 +1114,7 @@ request_rec *ap_read_request(conn_rec *conn) */ if (!(strcasecmp(tenc, "chunked") == 0 /* fast path */ || ap_find_last_token(r->pool, tenc, "chunked"))) { - ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(02539) "client sent unknown Transfer-Encoding " "(%s): %s", tenc, r->uri); r->status = HTTP_BAD_REQUEST;