diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-01-12 17:50:38 +0100 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-01-12 17:50:38 +0100 |
commit | 663683a575cb170c656db06770b490037ecf3db7 (patch) | |
tree | 4e1ab03fd099271ff4a8b354c268001e21971452 /proto/rip/rip.c | |
parent | 77cedad1f6de8fcd0e59f280d08437ab3216428e (diff) | |
download | bird-663683a575cb170c656db06770b490037ecf3db7.tar bird-663683a575cb170c656db06770b490037ecf3db7.zip |
Make it compile again (stupid makefiles!), make quiet option work
(multicast/broadcast options are currently unimplemented).
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 68d2949..82c7d9a 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -362,6 +362,9 @@ rip_timer(timer *t) WALK_LIST( rif, P->interfaces ) { struct iface *iface = rif->iface; + if (rif->patt->mode == IM_QUIET) + continue; + if (!iface) continue; if (!(iface->flags & IF_UP)) continue; if (iface->flags & (IF_IGNORE | IF_LOOPBACK)) continue; @@ -507,7 +510,7 @@ rip_if_notify(struct proto *p, unsigned c, struct iface *old, struct iface *new) if (!k) return; /* We are not interested in this interface */ DBG("adding interface %s\n", new->name ); rif = new_iface(p, new, new->flags); - rif->metric = k->u.rip.metric; + rif->patt = k; add_head( &P->interfaces, NODE rif ); } } |