From: Mitesh Kanjariya Date: Wed, 7 Feb 2018 21:18:49 +0000 (-0800) Subject: zebra: fix 'show evpn vni' output X-Git-Tag: frr-5.0-dev~191^2~5 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=4ac71d4bea5f9a7b01d717ed6955f88035c92d9c;p=matthieu%2Ffrr.git zebra: fix 'show evpn vni' output removed an additional field 'local-tunnel-ip' from l2vnis o/p Ticket: CM-19670 Review: CCR-7167 Testing: Verified that the output is proper Signed-off-by: Mitesh Kanjariya --- diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 1e15529b00..850ee50969 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -1129,7 +1129,8 @@ static void zvni_print_hash(struct hash_backet *backet, void *ctxt[]) "%-10u %-4s %-21s %-8u %-8u %-15u %-37s\n", zvni->vni, "L2", zvni->vxlan_if ? zvni->vxlan_if->name : "unknown", - num_macs, num_neigh, num_vteps, + num_macs, num_neigh, + num_vteps, vrf_id_to_name(zvni->vrf_id)); else { char vni_str[VNI_STR_LEN];