From: Justin Erenkrantz Date: Sun, 9 Dec 2007 10:48:54 +0000 (+0000) Subject: Case statements should go on their own line. (No functional change.) X-Git-Tag: 2.3.0~1163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1955b2e9e0fd19a782f87784701a05de73dae565;p=thirdparty%2Fapache%2Fhttpd.git Case statements should go on their own line. (No functional change.) * modules/http/http_filters.c (ap_http_filter): Put case on its own line. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@602657 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index f3a25f69b2b..8090956be70 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -307,7 +307,8 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b, APR_BRIGADE_INSERT_TAIL(b, e); ctx->eos_sent = 1; return APR_SUCCESS; - case BODY_CHUNK: case BODY_CHUNK_PART: + case BODY_CHUNK: + case BODY_CHUNK_PART: { char line[30]; apr_bucket_brigade *bb;