]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
80 rule
authorJim Jagielski <jim@apache.org>
Tue, 12 Nov 2013 22:48:33 +0000 (22:48 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 12 Nov 2013 22:48:33 +0000 (22:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1541290 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index 454b8b9e4ed582fd303ec8139dbaae51fbf20658..56bbdc049a37f9cfe7d9076777001b970ea10deb 100644 (file)
@@ -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;
             }