diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2023-05-11 18:48:01 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2023-05-11 18:48:01 +0300 |
commit | 089d1f653001419ea9d0b463434a89007ec805bd (patch) | |
tree | f64fea865507ffb740ad725276071a721a2793e0 | |
parent | 2ce3eeeeb76318e414b62d399da70872d2de23d8 (diff) | |
download | nginx-089d1f653001419ea9d0b463434a89007ec805bd.tar.gz nginx-089d1f653001419ea9d0b463434a89007ec805bd.zip |
QUIC: style.
-rw-r--r-- | src/http/v3/ngx_http_v3.h | 4 | ||||
-rw-r--r-- | src/http/v3/ngx_http_v3_parse.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/http/v3/ngx_http_v3.h b/src/http/v3/ngx_http_v3.h index 2bb717cc8..2c05f089f 100644 --- a/src/http/v3/ngx_http_v3.h +++ b/src/http/v3/ngx_http_v3.h @@ -85,11 +85,11 @@ #define ngx_http_v3_get_session(c) ngx_http_quic_get_connection(c)->v3_session #define ngx_http_v3_get_module_loc_conf(c, module) \ - ngx_http_get_module_loc_conf(ngx_http_quic_get_connection(c)->conf_ctx, \ + ngx_http_get_module_loc_conf(ngx_http_quic_get_connection(c)->conf_ctx, \ module) #define ngx_http_v3_get_module_srv_conf(c, module) \ - ngx_http_get_module_srv_conf(ngx_http_quic_get_connection(c)->conf_ctx, \ + ngx_http_get_module_srv_conf(ngx_http_quic_get_connection(c)->conf_ctx, \ module) #define ngx_http_v3_finalize_connection(c, code, reason) \ diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c index 7dc53493c..7ea284f8a 100644 --- a/src/http/v3/ngx_http_v3_parse.c +++ b/src/http/v3/ngx_http_v3_parse.c @@ -868,7 +868,8 @@ ngx_http_v3_parse_field_l(ngx_connection_t *c, case sw_start: - ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 parse field l"); + ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, + "http3 parse field l"); if (b->pos == b->last) { return NGX_AGAIN; |