mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 09:41:54 +00:00
Fixes another minor bug in iface scan.
Iface flags are not updated in some cases.
This commit is contained in:
parent
b573755df4
commit
bc09257117
10
nest/iface.c
10
nest/iface.c
@ -290,11 +290,11 @@ if_update(struct iface *new)
|
|||||||
memcpy(i, new, sizeof(*i));
|
memcpy(i, new, sizeof(*i));
|
||||||
goto newif;
|
goto newif;
|
||||||
}
|
}
|
||||||
else if (c)
|
|
||||||
{
|
if_copy(i, new);
|
||||||
if_copy(i, new);
|
if (c)
|
||||||
if_notify_change(c, i);
|
if_notify_change(c, i);
|
||||||
}
|
|
||||||
i->flags |= IF_UPDATED;
|
i->flags |= IF_UPDATED;
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user