]> granicus.if.org Git - apache/commitdiff
Wrap at 80 still, here at httpd project
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 12 Nov 2013 22:14:54 +0000 (22:14 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 12 Nov 2013 22:14:54 +0000 (22:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1541270 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index 37c277dc50825632c8ed710b410ca3a03d0fdc8d..454b8b9e4ed582fd303ec8139dbaae51fbf20658 100644 (file)
@@ -235,16 +235,17 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b,
                  * the final encoding, the message body length is determined by
                  * reading the connection until it is closed by the server."
                  */
-                ap_log_rerror(
-                        APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01586) "Unknown Transfer-Encoding: %s; using read-until-close", tenc);
+                ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01586)
+                              "Unknown Transfer-Encoding: %s;"
+                              " using read-until-close", tenc);
                 tenc = NULL;
             }
             else {
                 /* Something that isn't a HTTP request, unless some future
                  * edition defines new transfer encodings, is unsupported.
                  */
-                ap_log_rerror(
-                        APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01585) "Unknown Transfer-Encoding: %s", tenc);
+                ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, f->r, APLOGNO(01585)
+                              "Unknown Transfer-Encoding: %s", tenc);
                 return APR_EGENERAL;
             }
             lenp = NULL;