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

Parameter order for the proto->if_notify hook was different in the include

file and different in reality. Decided to use the same order as we do
for proto->rt_notify (i.e., first new value and second the old one).
This commit is contained in:
Martin Mares
1999-02-13 21:58:53 +00:00
parent 726141746b
commit d1f7eab6b5
3 changed files with 4 additions and 4 deletions

View File

@@ -497,7 +497,7 @@ new_iface(struct proto *p, struct iface *new, unsigned long flags)
}
static void
rip_if_notify(struct proto *p, unsigned c, struct iface *old, struct iface *new)
rip_if_notify(struct proto *p, unsigned c, struct iface *new, struct iface *old)
{
DBG( "RIP: if notify\n" );
if (old) {