mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-10 09:21:35 -04:00
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.
This commit is contained in:
parent
e2d2f67666
commit
629fbee3be
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue