diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-03-28 22:46:18 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-03-28 22:46:18 +0200 |
commit | 52a43ae3b76f86b697537bc3ad8afdb3b421cf2c (patch) | |
tree | 15a006b41f3e166c75f46f1ea45cc4fcb1502f5d /proto/rip | |
parent | c454872f4e81e69a8e9950289ab810fcac3fc922 (diff) | |
download | bird-52a43ae3b76f86b697537bc3ad8afdb3b421cf2c.tar bird-52a43ae3b76f86b697537bc3ad8afdb3b421cf2c.zip |
Minor changes in addresses.
Mainly changes IA_UNNUMBERED to IA_PEER and adds IA_HOST. Also do not
show broadcast addr in show interfaces. Nobody cares for that.
Diffstat (limited to 'proto/rip')
-rw-r--r-- | proto/rip/rip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 4b3de2e..0259cfb 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -704,7 +704,7 @@ new_iface(struct proto *p, struct iface *new, unsigned long flags, struct iface_ } if (new) { - if (new->addr->flags & IA_UNNUMBERED) + if (new->addr->flags & IA_PEER) log( L_WARN "%s: rip is not defined over unnumbered links", p->name ); if (rif->multicast) { #ifndef IPV6 |