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:51:27 +0400 |
commit | 2894cdc344ab15d8a80906d77cfe90378f82f71d (patch) | |
tree | c908c8e0528c9ba49c67aace7b8d74c0d1241edd /zebra | |
parent | 6dd6c307bf697184a77fd777c0226399de630be5 (diff) |
zebra: fix IPv6 RA wrt interface removal (BZ#480)
Diffstat (limited to 'zebra')
-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; |