]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Case statements should go on their own line. (No functional change.)
authorJustin Erenkrantz <jerenkrantz@apache.org>
Sun, 9 Dec 2007 10:48:54 +0000 (10:48 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Sun, 9 Dec 2007 10:48:54 +0000 (10:48 +0000)
* 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

modules/http/http_filters.c

index f3a25f69b2b2e14ffdf836d42d03eafa3ed03f17..8090956be70122c3ac0a253119c4ad6bd9c65575 100644 (file)
@@ -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;