diff options
author | Roman Arutyunyan <arut@nginx.com> | 2022-01-12 11:57:06 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2022-01-12 11:57:06 +0300 |
commit | 5ab94d4219fb2119770d024731a53dba6871b25c (patch) | |
tree | 018669a5430b8ca9e8bc1e77b688c65a7e63d4d0 /src/http/ngx_http_request.c | |
parent | 109166e4fa41cb35a91107b0be075aec22a567eb (diff) | |
download | nginx-5ab94d4219fb2119770d024731a53dba6871b25c.tar.gz nginx-5ab94d4219fb2119770d024731a53dba6871b25c.zip |
HTTP/3: simplified code.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 12a8cd144..fd3e880f8 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -2970,7 +2970,7 @@ ngx_http_test_reading(ngx_http_request_t *r) #if (NGX_HTTP_V3) if (c->quic) { - if (c->read->error) { + if (rev->error) { err = 0; goto closed; } |