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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user