You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2013/11/12 23:48:34 UTC

svn commit: r1541290 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: jim
Date: Tue Nov 12 22:48:33 2013
New Revision: 1541290

URL: http://svn.apache.org/r1541290
Log:
80 rule

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1541290&r1=1541289&r2=1541290&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Tue Nov 12 22:48:33 2013
@@ -263,7 +263,8 @@ apr_status_t ap_http_filter(ap_filter_t 
 
                 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 
              */
             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;
             }