diff options
Diffstat (limited to 'nest/iface.c')
-rw-r--r-- | nest/iface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/iface.c b/nest/iface.c index 46a49f8f..83a633a3 100644 --- a/nest/iface.c +++ b/nest/iface.c @@ -172,12 +172,12 @@ static inline void ifa_notify_change(unsigned c, struct ifa *a) { if (c & IF_CHANGE_DOWN) - neigh_ifa_update(a); + neigh_ifa_down(a); ifa_notify_change_(c, a); if (c & IF_CHANGE_UP) - neigh_ifa_update(a); + neigh_ifa_up(a); } static inline void |