From: Donald Sharp Date: Mon, 20 Nov 2017 00:38:55 +0000 (-0500) Subject: zebra: Fix 'show ip rpf' to actually work X-Git-Tag: frr-4.0-dev~141^2~1 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=fba31af2b56c01438452c45cd75337071229e84f;p=matthieu%2Ffrr.git zebra: Fix 'show ip rpf' to actually work Rework of do_show_ip_route caused the 'show ip rpf' cli to stop working. This put's it back into working order. Signed-off-by: Donald Sharp --- diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index 73f0717124..edc9db043d 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -311,7 +311,7 @@ DEFUN (show_ip_rpf, { int uj = use_json(argc, argv); return do_show_ip_route(vty, VRF_DEFAULT_NAME, AFI_IP, SAFI_MULTICAST, - false, uj, 0, NULL, false, -1, 0); + false, uj, 0, NULL, false, 0, 0); } DEFUN (show_ip_rpf_addr,