From f4005126d78d19f1efd4f8fb4cad916d8976d97a Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 31 Jul 2025 21:31:27 +0400 Subject: [PATCH] Updated ngx_http_process_multi_header_lines() comments. Missed in fcf4331a0. --- src/http/v2/ngx_http_v2.c | 2 +- src/http/v3/ngx_http_v3_request.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http/v2/ngx_http_v2.c b/src/http/v2/ngx_http_v2.c index dba4477d..13856583 100644 --- a/src/http/v2/ngx_http_v2.c +++ b/src/http/v2/ngx_http_v2.c @@ -3722,7 +3722,7 @@ ngx_http_v2_construct_cookie_header(ngx_http_request_t *r) if (hh->handler(r, h, hh->offset) != NGX_OK) { /* * request has been finalized already - * in ngx_http_process_multi_header_lines() + * in ngx_http_process_header_line() */ return NGX_ERROR; } diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index a5291086..844a4000 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -1216,7 +1216,7 @@ ngx_http_v3_construct_cookie_header(ngx_http_request_t *r) if (hh->handler(r, h, hh->offset) != NGX_OK) { /* * request has been finalized already - * in ngx_http_process_multi_header_lines() + * in ngx_http_process_header_line() */ return NGX_ERROR; } -- 2.43.0