mirror of
https://github.com/nginx/nginx.git
synced 2024-12-12 02:09:04 +08:00
Fixed response line formatting with empty reason phrase.
As per RFC 2616 sec 6.1 the response status code is always followed by SP.
This commit is contained in:
parent
63b1baa7f1
commit
bff2b8d69f
@ -264,13 +264,13 @@ ngx_http_header_filter(ngx_http_request_t *r)
|
|||||||
len += ngx_http_status_lines[status].len;
|
len += ngx_http_status_lines[status].len;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
len += NGX_INT_T_LEN;
|
len += NGX_INT_T_LEN + 1 /* SP */;
|
||||||
status_line = NULL;
|
status_line = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status_line && status_line->len == 0) {
|
if (status_line && status_line->len == 0) {
|
||||||
status = r->headers_out.status;
|
status = r->headers_out.status;
|
||||||
len += NGX_INT_T_LEN;
|
len += NGX_INT_T_LEN + 1 /* SP */;
|
||||||
status_line = NULL;
|
status_line = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user