This build issued was introduced by this previous commit which is a bugfix:
BUG/MINOR: quic: Wrong ack ranges handling when reaching the limit.
A BUG_ON() referenced <fist> variable in place of <first>.
Must be backported as far as 2.6 as the previous commit.
(cherry picked from commit
59acb27001ab225aff7e7d1b24f25e0e17b18ff3)
Signed-off-by: Willy Tarreau <w@1wt.eu>
struct eb64_node *first;
first = eb64_first(&arngs->root);
- BUG_ON(fist == NULL);
+ BUG_ON(first == NULL);
eb64_delete(first);
pool_free(pool_head_quic_arng, first);
arngs->sz--;