From: Frederic Lecaille Date: Wed, 27 May 2026 15:07:26 +0000 (+0200) Subject: CLEANUP: qpack: fix copy-paste typo in value Huffman debug string for WLN X-Git-Tag: v3.4.0~80 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=629fbee3be76d63e12b8b715c0b990b4eb863fd2;p=thirdparty%2Fhaproxy.git CLEANUP: qpack: fix copy-paste typo in value Huffman debug string for WLN In qpack_decode_fs(), inside the QPACK_LFL_WLN_BIT branch (Literal field line with literal name), the debug message printed "[name huff ...]" instead of "[value huff ...]" after decoding the value string. This is a harmless copy-paste typo from the preceding name decoding block. Even if this is a cleanup, should be easily backported to ease any further backport. --- diff --git a/src/qpack-dec.c b/src/qpack-dec.c index 06642b5ea..703275aa5 100644 --- a/src/qpack-dec.c +++ b/src/qpack-dec.c @@ -551,7 +551,7 @@ int qpack_decode_fs(const unsigned char *raw, uint64_t len, struct buffer *tmp, goto out; } - qpack_debug_printf(stderr, " [name huff %d->%d '%s']", (int)value_len, (int)nlen, trash); + qpack_debug_printf(stderr, " [value huff %d->%d '%s']", (int)value_len, (int)nlen, trash); /* makes an ist from tmp storage */ b_add(tmp, nlen); value = ist2(trash, nlen);