diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-01-11 15:14:23 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-01-11 15:14:23 +0000 |
commit | fcaa367929e2484a94f3c1b6276ba56ac96295a3 (patch) | |
tree | d391c56a04dc134192c446c55ffbde1627f4ce57 /src | |
parent | d8be48a546a730eccc9c18c89be5fe15b4aedfac (diff) | |
download | nginx-fcaa367929e2484a94f3c1b6276ba56ac96295a3.tar.gz nginx-fcaa367929e2484a94f3c1b6276ba56ac96295a3.zip |
allow a chunked body for 201 responses
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_chunked_filter_module.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_chunked_filter_module.c b/src/http/modules/ngx_http_chunked_filter_module.c index 846053ff4..25b7fe8e8 100644 --- a/src/http/modules/ngx_http_chunked_filter_module.c +++ b/src/http/modules/ngx_http_chunked_filter_module.c @@ -52,7 +52,6 @@ ngx_http_chunked_header_filter(ngx_http_request_t *r) { if (r->headers_out.status == NGX_HTTP_NOT_MODIFIED || r->headers_out.status == NGX_HTTP_NO_CONTENT - || r->headers_out.status == NGX_HTTP_CREATED || r != r->main || (r->method & NGX_HTTP_HEAD)) { |