From: Igor Putovny Date: Tue, 18 Feb 2025 15:14:08 +0000 (+0100) Subject: Fix typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73070a6fb30745e9a66bd7c6b6f26b605ee4068b;p=thirdparty%2Fbird.git Fix typo --- diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index 83a0278f0..ee9e8ef80 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -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]); }