diff options
author | Lou Berger <lberger@labn.net> | 2018-07-28 16:42:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-28 16:42:07 +0200 |
commit | bf7bf2b99c8d7716808b0f18df2997607f908c74 (patch) | |
tree | adf40c1a377cbc87778437fb41494d859d8626a8 /zebra | |
parent | Merge pull request #2742 from vangheem/master (diff) | |
parent | zebra: fix missing table identifier passed for ip route vrf commands (diff) | |
download | frr-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.c | 2 |
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. */ |