You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2012/04/17 14:58:30 UTC

svn commit: r1327077 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c

Author: trawick
Date: Tue Apr 17 12:58:29 2012
New Revision: 1327077

URL: http://svn.apache.org/viewvc?rev=1327077&view=rev
Log:
fix formatting of some 2.3.7-dev additions

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c?rev=1327077&r1=1327076&r2=1327077&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c Tue Apr 17 12:58:29 2012
@@ -514,13 +514,13 @@ static int add_request_body(request_rec 
 
 	
 
-        while((bucket_input = APR_BRIGADE_FIRST(input_brigade)) != APR_BRIGADE_SENTINEL(input_brigade)) {
+        while ((bucket_input = APR_BRIGADE_FIRST(input_brigade)) != APR_BRIGADE_SENTINEL(input_brigade)) {
             const char *data;
             apr_size_t len;
             apr_bucket *bucket_stdin;
 
             ++loop_counter;
-            if((loop_counter % FCGID_BRIGADE_CLEAN_STEP) == 0) {
+            if ((loop_counter % FCGID_BRIGADE_CLEAN_STEP) == 0) {
                 apr_brigade_cleanup(tmp_brigade);
             }
             APR_BUCKET_REMOVE(bucket_input);