diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-10 15:45:28 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-15 10:26:53 -0400 |
| commit | 7e2b760345f2dc43d9fc5381617ac4acc1cfd1d1 (patch) | |
| tree | 7bd585227cb8666a15d3920ca13a1f44560b6360 /ospf6d/ospf6_interface.c | |
| parent | 93f681fa135ca65747190e5f36e720a217cfd163 (diff) | |
*: Remove non-vrf based ifindex lookup
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 8998799cf6..62c77e6f87 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -69,7 +69,7 @@ ospf6_interface_lookup_by_ifindex (ifindex_t ifindex) struct ospf6_interface *oi; struct interface *ifp; - ifp = if_lookup_by_index (ifindex); + ifp = if_lookup_by_index (ifindex, VRF_DEFAULT); if (ifp == NULL) return (struct ospf6_interface *) NULL; |
