From: Igor Putovny Date: Mon, 25 Nov 2024 15:51:15 +0000 (+0100) Subject: Root has a depth 0 instead of 1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=551a6d9b95ad090d486521bd2381216dfe6e72eb;p=thirdparty%2Fbird.git Root has a depth 0 instead of 1 --- diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index 41d80f015..ae35b3f58 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -1801,7 +1801,7 @@ static void trie_init(struct aggregator_proto *p) { p->root = create_new_node(p->trie_pool); - p->root->depth = 1; + p->root->depth = 0; struct network *default_net = NULL;