From: William A. Rowe Jr Date: Tue, 12 Nov 2013 22:14:54 +0000 (+0000) Subject: Wrap at 80 still, here at httpd project X-Git-Tag: 2.5.0-alpha~4867 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a8af6d2361695c0494d85c1c825f98d2fda8b4f;p=apache Wrap at 80 still, here at httpd project git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1541270 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 37c277dc50..454b8b9e4e 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -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;