aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_script.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-10-02 10:22:51 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-10-02 10:22:51 +0000
commit8fd830adc0a3bcdcf471237e2c4445d15e64face (patch)
tree45625134d5a27490442c031ba404d49f32c069be /src/http/ngx_http_script.c
parent8c0dec813f2ce4b29c94452dfda16908a3927800 (diff)
downloadnginx-8fd830adc0a3bcdcf471237e2c4445d15e64face.tar.gz
nginx-8fd830adc0a3bcdcf471237e2c4445d15e64face.zip
set "Content-Length: 0" for errors handled by "return 204"
Diffstat (limited to 'src/http/ngx_http_script.c')
-rw-r--r--src/http/ngx_http_script.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c
index 3a9e2a85b..e8bce1911 100644
--- a/src/http/ngx_http_script.c
+++ b/src/http/ngx_http_script.c
@@ -841,6 +841,7 @@ ngx_http_script_return_code(ngx_http_script_engine_t *e)
if (code->status == NGX_HTTP_NO_CONTENT) {
e->request->header_only = 1;
+ e->request->zero_body = 1;
}
e->ip += sizeof(ngx_http_script_return_code_t) - sizeof(uintptr_t);