You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2007/12/09 11:49:01 UTC

svn commit: r602657 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: jerenkrantz
Date: Sun Dec  9 02:48:54 2007
New Revision: 602657

URL: http://svn.apache.org/viewvc?rev=602657&view=rev
Log:
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.

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=602657&r1=602656&r2=602657&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Sun Dec  9 02:48:54 2007
@@ -307,7 +307,8 @@
             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;