summaryrefslogtreecommitdiffhomepage
path: root/src/http
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2025-07-30 17:43:44 +0400
committerpluknet <pluknet@nginx.com>2025-08-03 10:07:07 +0400
commit372659114ed9b7a406093890ec2bdf437925ce64 (patch)
tree14a9243b30d99f1ac97f85d07b1d46b38358ed96 /src/http
parent4d857aaf435975d3c34e41d7a9cb50c0f87879ec (diff)
downloadnginx-372659114ed9b7a406093890ec2bdf437925ce64.tar.gz
nginx-372659114ed9b7a406093890ec2bdf437925ce64.tar.bz2
HTTP/3: improved invalid ":authority" error message.
Diffstat (limited to 'src/http')
-rw-r--r--src/http/v3/ngx_http_v3_request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c
index 32b11b598..a52910860 100644
--- a/src/http/v3/ngx_http_v3_request.c
+++ b/src/http/v3/ngx_http_v3_request.c
@@ -965,7 +965,7 @@ ngx_http_v3_init_pseudo_headers(ngx_http_request_t *r)
if (rc == NGX_DECLINED) {
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
- "client sent invalid host in request line");
+ "client sent invalid \":authority\" header");
goto failed;
}