summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_vty.c
diff options
context:
space:
mode:
authorPhilippe Guibert <philippe.guibert@6wind.com>2018-07-25 11:32:13 +0200
committerPhilippe Guibert <philippe.guibert@6wind.com>2018-07-27 08:42:14 +0200
commit521191140d0e5d9e0aed1ee7ee51a6a0c8d4bab8 (patch)
tree4d63e8b2d4a6e88eadba50f4fe83cd7fe29194bf /zebra/zebra_vty.c
parentMerge pull request #2729 from qlyoung/doc-misc-bgp-fixes (diff)
downloadfrr-521191140d0e5d9e0aed1ee7ee51a6a0c8d4bab8.tar.xz
frr-521191140d0e5d9e0aed1ee7ee51a6a0c8d4bab8.zip
zebra: fix missing table identifier passed for ip route vrf commands
The parameter was missing in that vty command. Then it is being added. Also some documentation is refreshed. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.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 bed3b7f77..5aa628631 100644
--- a/zebra/zebra_vty.c
+++ b/zebra/zebra_vty.c
@@ -1071,7 +1071,7 @@ DEFPY(ip_route_vrf,
return zebra_static_route_leak(
vty, zvrf, nh_zvrf, AFI_IP, SAFI_UNICAST, no, prefix, mask_str,
NULL, gate_str, ifname, flag, tag_str, distance_str, label,
- NULL);
+ table_str);
}
/* New RIB. Detailed information for IPv4 route. */