diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2011-12-27 10:18:47 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2012-01-02 19:14:08 +0400 |
commit | fb5174a27e4122edf849c524861dfcd92d8b19f5 (patch) | |
tree | 1e2b4b43c033f072c27fd1de3ea94dc3ae8124ca | |
parent | 4f1735fd6ac5d0881bafa9bd421e00645b6c60fd (diff) |
zebra: fix IPv6 RA wrt interface removal (BZ#480)
-rw-r--r-- | zebra/rtadv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/rtadv.c b/zebra/rtadv.c index 8cc3c4cb..3e8750aa 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -368,7 +368,7 @@ rtadv_timer (struct thread *thread) for (ALL_LIST_ELEMENTS (iflist, node, nnode, ifp)) { - if (if_is_loopback (ifp)) + if (if_is_loopback (ifp) || ! if_is_operative (ifp)) continue; zif = ifp->info; |