]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fix typo
authorIgor Putovny <igor.putovny@nic.cz>
Tue, 18 Feb 2025 15:14:08 +0000 (16:14 +0100)
committerIgor Putovny <igor.putovny@nic.cz>
Tue, 18 Feb 2025 15:14:08 +0000 (16:14 +0100)
proto/aggregator/aggregator.c

index 83a0278f0e898fe47dbc0b71b412f20ab51bf1cf..ee9e8ef8055481290faae03f54e5f88e2cda9adf 100644 (file)
@@ -862,7 +862,7 @@ third_pass_helper(struct aggregator_proto *p, struct trie_node *node, ip_addr *p
   if (node->child[1])
   {
     assert((u32)node->depth == pxlen);
-    ip6_setbit(prefix, node->depth + ipa_shift[p->addr_type]);
+    ipa_setbit(prefix, node->depth + ipa_shift[p->addr_type]);
     third_pass_helper(p, node->child[1], prefix, pxlen + 1);
     ipa_clrbit(prefix, node->depth + ipa_shift[p->addr_type]);
   }