diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-11 07:27:15 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-15 10:36:23 -0400 |
| commit | 1306c09a1b6996f7afa3ac651659c40146117834 (patch) | |
| tree | cb1a038dfebfb2532b8b067ffdb79d04eae41518 /ospf6d/ospf6_top.c | |
| parent | a90607a4ba81caec852bd2e15f541ff12b08c031 (diff) | |
*: Refactor if_lookup_by_name to be VRF aware
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_top.c')
| -rw-r--r-- | ospf6d/ospf6_top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_top.c b/ospf6d/ospf6_top.c index 92111c73fc..9e741d07d2 100644 --- a/ospf6d/ospf6_top.c +++ b/ospf6d/ospf6_top.c @@ -728,7 +728,7 @@ DEFUN (no_ospf6_interface_area, struct interface *ifp; u_int32_t area_id; - ifp = if_lookup_by_name (argv[idx_ifname]->arg); + ifp = if_lookup_by_name (argv[idx_ifname]->arg, VRF_DEFAULT); if (ifp == NULL) { vty_out (vty, "No such interface %s%s", argv[idx_ifname]->arg, VNL); |
