1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Added extra argument to rt_update hook which contains a pointer to the

temporary attribute list.
This commit is contained in:
Martin Mares
1999-05-31 18:55:35 +00:00
parent 75b84c34e3
commit bb027be1e2
4 changed files with 5 additions and 4 deletions

View File

@@ -127,7 +127,7 @@ do_rte_announce(struct announce_hook *a, net *net, rte *new, rte *old, ea_list *
}
}
if (new || old)
p->rt_notify(p, net, new, old);
p->rt_notify(p, net, new, old, tmpa);
if (new && new != new0) /* Discard temporary rte's */
rte_free(new);
if (old && old != old0)