From: Igor Putovny Date: Tue, 18 Feb 2025 15:28:19 +0000 (+0100) Subject: Rename aggregator_process_withdraw() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c2a7de9d909115d0f823964f32450ba0c486a90;p=thirdparty%2Fbird.git Rename aggregator_process_withdraw() --- diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index 6a73433a8..0dea73494 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -1078,7 +1078,7 @@ aggregator_process_update(struct aggregator_proto *p, struct aggregator_route *o } static void -aggregator_process_withdraw(struct aggregator_proto *p, struct aggregator_route *old) +aggregator_process_withdrawal(struct aggregator_proto *p, struct aggregator_route *old) { assert(p != NULL); assert(old != NULL); @@ -1772,7 +1772,7 @@ aggregator_rt_notify(struct proto *P, struct channel *src_ch, net *net, rte *new if (p->root) { if (old && !new) - aggregator_process_withdraw(p, old_route); + aggregator_process_withdrawal(p, old_route); else aggregator_process_update(p, old_route, new_route);