diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2013-11-12 23:14:54 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2013-11-12 23:14:54 +0100 |
commit | 9a8af6d2361695c0494d85c1c825f98d2fda8b4f (patch) | |
tree | b92d403ec89543939d530b692762cc1572de8aba /modules/http | |
parent | At least one authorizer that doesn't use libfcgi directly (diff) | |
download | apache2-9a8af6d2361695c0494d85c1c825f98d2fda8b4f.tar.xz apache2-9a8af6d2361695c0494d85c1c825f98d2fda8b4f.zip |
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
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_filters.c | 9 |
1 files changed, 5 insertions, 4 deletions
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; |