mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-10 09:21:35 -04:00
BUG/MINOR: qpack: fix build with QPACK_DEBUG
The local variable 't' was renamed 'static_tbl'. Fix its name in the qpack_debug_printf() statement which is activated only with QPACK_DEBUG mode. No need to backport as this was introduced in current dev branch.
This commit is contained in:
parent
f9de4e9fae
commit
055de23b7d
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ int qpack_decode_fs(const unsigned char *raw, uint64_t len, struct buffer *tmp,
|
|||
ABORT_NOW();
|
||||
}
|
||||
|
||||
qpack_debug_printf(stderr, " t=%d index=%llu", !!t, (unsigned long long)index);
|
||||
qpack_debug_printf(stderr, " t=%d index=%llu", !!static_tbl, (unsigned long long)index);
|
||||
}
|
||||
else if (efl_type & QPACK_LFL_WNR_BIT) {
|
||||
/* Literal field line with name reference */
|
||||
|
|
|
|||
Loading…
Reference in a new issue