diff options
| author | Russ White <russ@riw.us> | 2021-07-30 06:37:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-30 06:37:50 -0400 |
| commit | e448fefbb4adf12581c002f658e03378a01b7940 (patch) | |
| tree | 897de52057295df435d9880fe047bb2f8087789b /ospf6d/ospf6_intra.c | |
| parent | 6430836d92dd6c695241ae9fc1ba72d69f2e6906 (diff) | |
| parent | 8a86be272fab9fc6af73a10b386e45583601fad9 (diff) | |
Merge pull request #9028 from mobash-rasool/ospfv3-asbr-summarisation
Ospfv3 ASBR summarisation feature
Diffstat (limited to 'ospf6d/ospf6_intra.c')
| -rw-r--r-- | ospf6d/ospf6_intra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_intra.c b/ospf6d/ospf6_intra.c index 06f64bbc40..e4db8f3a02 100644 --- a/ospf6d/ospf6_intra.c +++ b/ospf6d/ospf6_intra.c @@ -1327,7 +1327,7 @@ int ospf6_intra_prefix_lsa_originate_transit(struct thread *thread) || current + OSPF6_PREFIX_SIZE(op) > end) break; - route = ospf6_route_create(); + route = ospf6_route_create(oi->area->ospf6); route->type = OSPF6_DEST_TYPE_NETWORK; route->prefix.family = AF_INET6; @@ -1790,7 +1790,7 @@ void ospf6_intra_prefix_lsa_add(struct ospf6_lsa *lsa) continue; } - route = ospf6_route_create(); + route = ospf6_route_create(oa->ospf6); memset(&route->prefix, 0, sizeof(struct prefix)); route->prefix.family = AF_INET6; |
