From 59acb27001ab225aff7e7d1b24f25e0e17b18ff3 Mon Sep 17 00:00:00 2001 From: Frederic Lecaille Date: Mon, 5 Feb 2024 14:31:21 +0100 Subject: [PATCH] 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. --- src/quic_ack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--; -- 2.39.5