diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-09-02 08:25:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-02 08:25:09 -0400 |
| commit | b0d39af982854de9fcad7960804b8ca82a664158 (patch) | |
| tree | 068802be000e463be3550cbbba73c5525400adbc /ospf6d/ospf6_abr.c | |
| parent | 4223956546963c3f1a918efc6d3a5c0da875c7e7 (diff) | |
| parent | c5d28568c6b71e16fefb3a409159e8fc9742e3f0 (diff) | |
Merge pull request #7027 from Niral-Networks/niral_dev_vrf_ospf6
ospf6d : Preparing for ospf6d VRF support.
Diffstat (limited to 'ospf6d/ospf6_abr.c')
| -rw-r--r-- | ospf6d/ospf6_abr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_abr.c b/ospf6d/ospf6_abr.c index b339790492..6fe3a289ce 100644 --- a/ospf6d/ospf6_abr.c +++ b/ospf6d/ospf6_abr.c @@ -72,7 +72,7 @@ static int ospf6_abr_nexthops_belong_to_area(struct ospf6_route *route, struct ospf6_interface *oi; oi = ospf6_interface_lookup_by_ifindex( - ospf6_route_get_first_nh_index(route)); + ospf6_route_get_first_nh_index(route), area->ospf6->vrf_id); if (oi && oi->area && oi->area == area) return 1; else |
