summaryrefslogtreecommitdiffstats
path: root/zebra
diff options
context:
space:
mode:
authorLou Berger <lberger@labn.net>2018-07-28 16:42:07 +0200
committerGitHub <noreply@github.com>2018-07-28 16:42:07 +0200
commitbf7bf2b99c8d7716808b0f18df2997607f908c74 (patch)
treeadf40c1a377cbc87778437fb41494d859d8626a8 /zebra
parentMerge pull request #2742 from vangheem/master (diff)
parentzebra: fix missing table identifier passed for ip route vrf commands (diff)
downloadfrr-bf7bf2b99c8d7716808b0f18df2997607f908c74.tar.xz
frr-bf7bf2b99c8d7716808b0f18df2997607f908c74.zip
Merge pull request #2719 from pguibert6WIND/fix_tableno_vrf
zebra: fix missing table identifier passed for ip route vrf commands
Diffstat (limited to 'zebra')
-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 a2daf5939..4d71682f6 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. */