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 <fist> variable in place of <first>.

Must be backported as far as 2.6 as the previous commit.
This commit is contained in:
Frederic Lecaille 2024-02-05 14:31:21 +01:00
parent 0ce61d2f6d
commit 59acb27001

View File

@ -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--;