summaryrefslogtreecommitdiff
path: root/src/http/ngx_http_write_filter_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2005-05-14 18:40:51 +0000
committerJonathan Kolb <jon@b0g.us>2005-05-14 18:40:51 +0000
commitfabfcb9467f605bb2354fc51349563f102027b1d (patch)
tree393e109e89c41154b40946f02997c347898f1d3f /src/http/ngx_http_write_filter_module.c
parent4b4c1f681d5475900d89e99d87e15388044e3f5b (diff)
downloadnginx-fabfcb9467f605bb2354fc51349563f102027b1d.tar.gz
Changes with nginx 0.1.30 14 May 2005v0.1.30
*) Bugfix: the worker process may got caught in an endless loop if the SSI was used. *) Bugfix: the response encrypted by SSL may not transferred complete. *) Bugfix: if the length of the response part received at once from proxied or FastCGI server was equal to 500, then nginx returns the 500 response code; in proxy mode the bug appeared in 0.1.29 only. *) Bugfix: nginx did not consider the directives with 8 or 9 parameters as invalid. *) Feature: the "return" directive can return the 204 response code. *) Feature: the "ignore_invalid_headers" directive.
Diffstat (limited to 'src/http/ngx_http_write_filter_module.c')
-rw-r--r--src/http/ngx_http_write_filter_module.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_write_filter_module.c b/src/http/ngx_http_write_filter_module.c
index e0f382847..2d9db8b55 100644
--- a/src/http/ngx_http_write_filter_module.c
+++ b/src/http/ngx_http_write_filter_module.c
@@ -168,6 +168,7 @@ ngx_http_write_filter(ngx_http_request_t *r, ngx_chain_t *in)
return NGX_OK;
}
+#if 0
/*
* avoid the output if there are no incoming bufs but there are
* the postponed requests or data
@@ -176,6 +177,7 @@ ngx_http_write_filter(ngx_http_request_t *r, ngx_chain_t *in)
if (in == NULL && r->postponed) {
return NGX_OK;
}
+#endif
if (c->write->delayed) {
return NGX_AGAIN;