Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> wrote: > On Tue, Apr 26, 2022 at 12:29:35PM +0200, Florian Westphal wrote: > > assert(1) is a no-op, this should be assert(0). Use BUG() instead. > > Add missing CATCHALL to avoid BUG(). > > LGTM. > > So this is fixing a bug with catch-all element, correct? Not really, the default label is hit, assert(1) does not do anything. After making the assertion work we need to avoid the 'default' label.