diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-12-29 15:33:51 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-12-29 15:33:51 +0300 |
commit | 7f0fdd4e149380c9439e63bea7625c5071781af6 (patch) | |
tree | 603afa5ad1aae439833cdd14f7dd383f85df68da /src/http/v3/ngx_http_v3_request.c | |
parent | f3363a8dbe29b3159881e259b2690c78757c946f (diff) | |
download | nginx-7f0fdd4e149380c9439e63bea7625c5071781af6.tar.gz nginx-7f0fdd4e149380c9439e63bea7625c5071781af6.zip |
Style.
Diffstat (limited to 'src/http/v3/ngx_http_v3_request.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index 6faa3ee0b..b97caec95 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -628,7 +628,7 @@ ngx_http_v3_process_header(ngx_http_request_t *r, ngx_str_t *name, } } - if (name->len && name->data[0] == ':') { + if (name->len && name->data[0] == ':') { return ngx_http_v3_process_pseudo_header(r, name, value); } |