diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-11-10 16:43:11 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-11-10 16:43:11 +0100 |
commit | 5cdf264f937687aff194574f5fe2badb087337b8 (patch) | |
tree | bcb0cf3f701d2abbe350a811f1f32448d8eeedf0 /proto/ospf/ospf.c | |
parent | c4443085a198c26a478463429477e7e8a599fa07 (diff) |
Fixes a bug related to implicit backbone on ABR.
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r-- | proto/ospf/ospf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index a9dc1dee..a2a38f4b 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -205,6 +205,7 @@ ospf_start(struct proto *p) oa = mb_allocz(p->pool, sizeof(struct ospf_area)); add_tail(&po->area_list, NODE oa); po->areano++; + oa->ac = NULL; oa->stub = 0; oa->areaid = 0; oa->rt = NULL; |