From: Maria Matejka Date: Mon, 10 Mar 2025 14:58:33 +0000 (+0100) Subject: Table export: consider route never seen before actually nonexistent X-Git-Tag: v3.1.1~23^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e55d7d395b2e4117f99b8097d4a97721c137f4c2;p=thirdparty%2Fbird.git Table export: consider route never seen before actually nonexistent This may trigger some spurious warnings. --- diff --git a/nest/rt-table.c b/nest/rt-table.c index 91199ebbd..b604596a9 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -1191,7 +1191,7 @@ rt_notify_basic(struct channel *c, const rte *new, const rte *old) int accepted = bmap_test(&c->export_accepted_map, old->id); ASSERT_DIE(!rejected || !accepted); - if (rejected) + if (!accepted) { /* Drop the old rejected bit from the map, the old route id * gets released after exports. */