summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Rooney <rooneg@apache.org>2006-02-13 01:32:26 +0000
committerGarrett Rooney <rooneg@apache.org>2006-02-13 01:32:26 +0000
commite9c81b9cefd96b9773ad4d423cdd61bd64c05805 (patch)
tree0c7597458e13576660b594e23394d3d2faec44ce
parent9314f6944b59451d7a456f11fcfbbde788b56594 (diff)
downloadhttpd-e9c81b9cefd96b9773ad4d423cdd61bd64c05805.tar.gz
* modules/proxy/mod_proxy_fcgi.c
(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
-rw-r--r--modules/proxy/mod_proxy_fcgi.c27
1 files changed, 12 insertions, 15 deletions
diff --git a/modules/proxy/mod_proxy_fcgi.c b/modules/proxy/mod_proxy_fcgi.c
index 990390a543..025cdec9db 100644
--- a/modules/proxy/mod_proxy_fcgi.c
+++ b/modules/proxy/mod_proxy_fcgi.c
@@ -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