From: Sergey Kandaurov Date: Thu, 31 Jul 2025 17:31:27 +0000 (+0400) Subject: Updated ngx_http_process_multi_header_lines() comments. X-Git-Tag: release-1.29.1~8 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=f4005126d78d19f1efd4f8fb4cad916d8976d97a;p=nginx.git Updated ngx_http_process_multi_header_lines() comments. Missed in fcf4331a0. --- diff --git a/src/http/v2/ngx_http_v2.c b/src/http/v2/ngx_http_v2.c index dba4477d5..13856583f 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 a52910860..844a4000a 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; }