mirror of
https://github.com/nginx/nginx.git
synced 2026-06-28 21:02:15 +00:00
Access log: fix "request_length" format length
The variable handler uses "%O" format specifier. Reported by Mufeed VH of Winfunc Research.
This commit is contained in:
parent
bedf18f95d
commit
e09c0d32d5
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ static ngx_http_log_var_t ngx_http_log_vars[] = {
|
|||
{ ngx_string("bytes_sent"), NGX_OFF_T_LEN, ngx_http_log_bytes_sent },
|
||||
{ ngx_string("body_bytes_sent"), NGX_OFF_T_LEN,
|
||||
ngx_http_log_body_bytes_sent },
|
||||
{ ngx_string("request_length"), NGX_SIZE_T_LEN,
|
||||
{ ngx_string("request_length"), NGX_OFF_T_LEN,
|
||||
ngx_http_log_request_length },
|
||||
|
||||
{ ngx_null_string, 0, NULL }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue