diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2013-09-04 21:17:01 +0400 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2013-09-04 21:17:01 +0400 |
| commit | f108b28038d519db51f0453217af6f25381e1265 (patch) | |
| tree | cf973ffed325dc0739d850e64b88a6f99e750957 /src | |
| parent | 4b189002af160515fdd523b3d1802c050268c45f (diff) | |
| download | nginx-f108b28038d519db51f0453217af6f25381e1265.tar.gz nginx-f108b28038d519db51f0453217af6f25381e1265.tar.bz2 | |
Fixed incorrect response line on "return 203".
Reported by Weibin Yao,
http://mailman.nginx.org/pipermail/nginx-devel/2013-April/003607.html.
Diffstat (limited to 'src')
| -rw-r--r-- | src/http/ngx_http_header_filter_module.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/http/ngx_http_header_filter_module.c b/src/http/ngx_http_header_filter_module.c index 707a81313..875177b46 100644 --- a/src/http/ngx_http_header_filter_module.c +++ b/src/http/ngx_http_header_filter_module.c @@ -270,6 +270,12 @@ ngx_http_header_filter(ngx_http_request_t *r) len += NGX_INT_T_LEN; status_line = NULL; } + + if (status_line && status_line->len == 0) { + status = r->headers_out.status; + len += NGX_INT_T_LEN; + status_line = NULL; + } } clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); |
