diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2019-11-26 08:49:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-26 08:49:54 +0200 |
| commit | d656cf7fd1b256d6ae4ba9ee80dd8cc95e1d7952 (patch) | |
| tree | 62939c56c430d43d86b76c6836ce48a250e60e21 /zebra/zebra_vty.c | |
| parent | ee6e8c1cb07986c0c271bb414e3d139c6e41c284 (diff) | |
| parent | 06931fdb128f7f80b7934c0bd31d0690ed9682fd (diff) | |
Merge pull request #5407 from lkrishnamoor/evpn_vni_json
zebra: "show evpn vni details json" prints incorrect JSON format
Diffstat (limited to 'zebra/zebra_vty.c')
| -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 12517f3135..8a7c7e359f 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -2227,7 +2227,7 @@ DEFUN (show_evpn_vni_vni, vni = strtoul(argv[3]->arg, NULL, 10); zvrf = zebra_vrf_get_evpn(); - zebra_vxlan_print_vni(vty, zvrf, vni, uj); + zebra_vxlan_print_vni(vty, zvrf, vni, uj, NULL); return CMD_SUCCESS; } |
