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

index 6a73433a8ba520a945f7daf91df1bd9c3868b8d6..0dea7349469199c0c0d5ad544fbdec60833a5089 100644 (file)
@@ -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);