summaryrefslogtreecommitdiff
path: root/zebra/zebra_vty.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-09-14 15:34:25 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-09-14 15:34:25 -0400
commitf86a2b82fe6be0163940d717a99103abb805a00e (patch)
treea985c78368a5259ec4913c814a2e0082a7acf345 /zebra/zebra_vty.c
parentd71f1c4e6f97a6bb1250a962c1e875e6d65a6c93 (diff)
zebra: Pass in vrf to rib_match_ipv4_multicast
Pass around the vrf_id to rib_match_ipv4_multicast so that proper lookup can be maintained. Not really needed yet, but future fixing now. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_vty.c')
-rw-r--r--zebra/zebra_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c
index 72d0ced658..bf1d0a49c6 100644
--- a/zebra/zebra_vty.c
+++ b/zebra/zebra_vty.c
@@ -311,7 +311,7 @@ DEFUN (show_ip_rpf_addr,
return CMD_WARNING;
}
- rib = rib_match_ipv4_multicast (addr, &rn);
+ rib = rib_match_ipv4_multicast (VRF_DEFAULT, addr, &rn);
if (rib)
vty_show_ip_route_detail (vty, rn, 1);