changeset 9185:c458cd00bb0b

Adjusted Huffman coding debug logging, missed in 7977:336084ff943b. Spotted by XingY Wang.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 14 Nov 2023 14:50:03 +0400
parents 7ec761f0365f
children f366007dd23a
files src/http/ngx_http_huff_decode.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_huff_decode.c	Thu Oct 26 23:35:09 2023 +0300
+++ b/src/http/ngx_http_huff_decode.c	Tue Nov 14 14:50:03 2023 +0400
@@ -2657,7 +2657,7 @@
             != NGX_OK)
         {
             ngx_log_debug2(NGX_LOG_DEBUG_HTTP, log, 0,
-                           "http2 huffman decoding error at state %d: "
+                           "http huffman decoding error at state %d: "
                            "bad code 0x%Xd", *state, ch >> 4);
 
             return NGX_ERROR;
@@ -2667,7 +2667,7 @@
             != NGX_OK)
         {
             ngx_log_debug2(NGX_LOG_DEBUG_HTTP, log, 0,
-                           "http2 huffman decoding error at state %d: "
+                           "http huffman decoding error at state %d: "
                            "bad code 0x%Xd", *state, ch & 0xf);
 
             return NGX_ERROR;
@@ -2677,7 +2677,7 @@
     if (last) {
         if (!ending) {
             ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0,
-                           "http2 huffman decoding error: "
+                           "http huffman decoding error: "
                            "incomplete code 0x%Xd", ch);
 
             return NGX_ERROR;