From: Frederic Lecaille Date: Mon, 5 Feb 2024 13:31:21 +0000 (+0100) Subject: BUILD: quic: Variable name typo inside a BUG_ON(). X-Git-Tag: v3.0-dev3~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59acb27001;p=thirdparty%2Fhaproxy.git BUILD: quic: Variable name typo inside a BUG_ON(). 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 variable in place of . Must be backported as far as 2.6 as the previous commit. --- diff --git a/src/quic_ack.c b/src/quic_ack.c index 9551c4d4a1..d28a6985c5 100644 --- a/src/quic_ack.c +++ b/src/quic_ack.c @@ -84,7 +84,7 @@ struct quic_arng_node *quic_insert_new_range(struct quic_conn *qc, 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--;