diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 19:40:00 +0000 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 19:40:00 +0000 |
commit | 2fd31c8959fbae8f069d09b61f339358214e75d1 (patch) | |
tree | 0ab95bedaf0ba65c7f0cf1d1382efd24e18a0bfa /src/http/modules/ngx_http_quic_module.c | |
parent | 4b41b1478f108800d30bff981204bb0b85fc809e (diff) | |
download | nginx-2fd31c8959fbae8f069d09b61f339358214e75d1.tar.gz nginx-2fd31c8959fbae8f069d09b61f339358214e75d1.zip |
QUIC: renamed c->qs to c->quic.
Diffstat (limited to 'src/http/modules/ngx_http_quic_module.c')
-rw-r--r-- | src/http/modules/ngx_http_quic_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_quic_module.c b/src/http/modules/ngx_http_quic_module.c index 3993d4692..515d6c953 100644 --- a/src/http/modules/ngx_http_quic_module.c +++ b/src/http/modules/ngx_http_quic_module.c @@ -179,7 +179,7 @@ static ngx_int_t ngx_http_variable_quic(ngx_http_request_t *r, ngx_http_variable_value_t *v, uintptr_t data) { - if (r->connection->qs) { + if (r->connection->quic) { v->len = 4; v->valid = 1; |