mirror of
https://github.com/nginx/nginx.git
synced 2024-12-03 21:18:59 +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;
|
||||
|
||||
} else {
|
||||
len += NGX_INT_T_LEN;
|
||||
len += NGX_INT_T_LEN + 1 /* SP */;
|
||||
status_line = NULL;
|
||||
}
|
||||
|
||||
if (status_line && status_line->len == 0) {
|
||||
status = r->headers_out.status;
|
||||
len += NGX_INT_T_LEN;
|
||||
len += NGX_INT_T_LEN + 1 /* SP */;
|
||||
status_line = NULL;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user