commit | 82f5ee1ead0aa83f83f918abfc3f5071741a56e5 | [log] [tgz] |
---|---|---|
author | Stephen Hemminger <shemminger@vyatta.com> | Tue Apr 07 15:00:46 2009 -0700 |
committer | Paul Jakma <paul@quagga.net> | Thu Jun 18 20:18:27 2009 +0100 |
tree | bea94b32379b8f1b3f69db6d0c3404ccb115c7fa | |
parent | 94fc1dd41cd0267acb9c67dd3dcf1e64ef8713af [diff] [blame] |
[ripd] Ignore non-running interfaces in rip status Vyatta Bug 3999
diff --git a/ripd/ripd.c b/ripd/ripd.c index 0e3f877..c865ace 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c
@@ -3544,6 +3544,9 @@ { ri = ifp->info; + if (!ri->running) + continue; + if (ri->enable_network || ri->enable_interface) { if (ri->ri_send == RI_RIP_UNSPEC)