From 73070a6fb30745e9a66bd7c6b6f26b605ee4068b Mon Sep 17 00:00:00 2001 From: Igor Putovny Date: Tue, 18 Feb 2025 16:14:08 +0100 Subject: [PATCH] Fix typo --- proto/aggregator/aggregator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); } -- 2.47.2