diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-03-26 14:48:01 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-03-26 14:48:01 +0100 |
commit | af157fa3dbe2bba0674eb7634efd3ade6c89d604 (patch) | |
tree | a4ea7c3b83a3af814eace38d9c02bd2f468d644d /proto/ospf/iface.c | |
parent | 885b3d6127ae2c5c4f17d9dba95ffe67bdf7a688 (diff) |
Disable multiple OSPF pseudointerfaces on BSD.
Diffstat (limited to 'proto/ospf/iface.c')
-rw-r--r-- | proto/ospf/iface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index 987698e7..b30a8112 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -423,7 +423,7 @@ ospf_iface_new(struct proto_ospf *po, struct iface *iface, struct ifa *addr, ifa->strictnbma = ip->strictnbma; ifa->waitint = ip->waitint; ifa->dead = (ip->dead == 0) ? ip->deadc * ifa->helloint : ip->dead; - ifa->stub = ip->stub; + ifa->stub = ospf_iface_stubby(ip, addr); ifa->ioprob = OSPF_I_OK; ifa->rxbuf = ip->rxbuf; |