From: Jim Jagielski Date: Tue, 12 Nov 2013 22:48:33 +0000 (+0000) Subject: 80 rule X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bffa83f941aaa1e2b1a3ef7e63482966cc3068da;p=thirdparty%2Fapache%2Fhttpd.git 80 rule git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1541290 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 454b8b9e4ed..56bbdc049a3 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -263,7 +263,8 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b, ctx->remaining = 0; ap_log_rerror( - APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01587) "Invalid Content-Length"); + APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01587) + "Invalid Content-Length"); return APR_ENOSPC; } @@ -273,7 +274,9 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b, */ if (ctx->limit && ctx->limit < ctx->remaining) { ap_log_rerror( - APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01588) "Requested content-length of %" APR_OFF_T_FMT " is larger than the configured limit" + APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01588) + "Requested content-length of %" APR_OFF_T_FMT + " is larger than the configured limit" " of %" APR_OFF_T_FMT, ctx->remaining, ctx->limit); return APR_ENOSPC; }