diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2014-11-03 14:53:59 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2014-11-03 14:53:59 +0100 |
commit | cd3b700393144796c9dead54b6ac2fc31aaa5272 (patch) | |
tree | fd9501cce99813c957019385577fc2fbd5593907 /proto | |
parent | 6f8bbaa10bbd21729d0b62a5878febcbee2c0811 (diff) |
Bugfix to OSPF reconfiguration.
Diffstat (limited to 'proto')
-rw-r--r-- | proto/ospf/iface.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index 4dfb74fb..dfc892aa 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -1009,6 +1009,9 @@ ospf_walk_matching_iface_patts(struct ospf_proto *p, struct ospf_mip_walk *s) WALK_LIST(s->oa, p->area_list) { + if (s->oa->marked) + continue; + WALK_LIST(s->ip, s->oa->ac->patt_list) { id = s->ip->instance_id; |