]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/proxy/mod_proxy_fcgi.c
authorGarrett Rooney <rooneg@apache.org>
Mon, 13 Feb 2006 01:32:26 +0000 (01:32 +0000)
committerGarrett Rooney <rooneg@apache.org>
Mon, 13 Feb 2006 01:32:26 +0000 (01:32 +0000)
  (dispatch): Remove extra level of indentation.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/fcgi-proxy-dev@377284 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_fcgi.c

index 990390a5434ca32f73a794208927b640fe25f88f..025cdec9db1b20802e5659b9060224c729d39a10 100644 (file)
@@ -683,21 +683,18 @@ recv_again:
                             apr_bucket_setaside(b, setaside_pool);
                         }
                     } else {
-                            /* we've already passed along the headers,
-                             * so now pass through the content.
-                             * we could simply continue to setaside
-                             * the content and not pass until we
-                             * see the 0 content-length (below, where
-                             * we append the EOS), but that
-                             * could be a huge amount of data;
-                             * so we pass along smaller chunks
-                             */
-                            rv = ap_pass_brigade(r->output_filters, ob);
-                            if (rv != APR_SUCCESS) {
-                                break;
-                            }
-                            apr_brigade_cleanup(ob);
-
+                        /* we've already passed along the headers, so now pass
+                         * through the content.  we could simply continue to
+                         * setaside the content and not pass until we see the
+                         * 0 content-length (below, where we append the EOS),
+                         * but that could be a huge amount of data; so we pass
+                         * along smaller chunks
+                         */
+                        rv = ap_pass_brigade(r->output_filters, ob);
+                        if (rv != APR_SUCCESS) {
+                            break;
+                        }
+                        apr_brigade_cleanup(ob);
                     }
 
                     /* If we didn't read all the data go back and get the