summaryrefslogtreecommitdiff
path: root/zebra/rtadv.c
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2011-12-27 10:18:47 +0400
committerDenis Ovsienko <infrastation@yandex.ru>2012-01-02 19:14:08 +0400
commitfb5174a27e4122edf849c524861dfcd92d8b19f5 (patch)
tree1e2b4b43c033f072c27fd1de3ea94dc3ae8124ca /zebra/rtadv.c
parent4f1735fd6ac5d0881bafa9bd421e00645b6c60fd (diff)
zebra: fix IPv6 RA wrt interface removal (BZ#480)
Diffstat (limited to 'zebra/rtadv.c')
-rw-r--r--zebra/rtadv.c2
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;