]> git.puffer.fish Git - matthieu/frr.git/commitdiff
zebra: fix 'show evpn vni' output
authorMitesh Kanjariya <mitesh@marvel-07.cumulusnetworks.com>
Wed, 7 Feb 2018 21:18:49 +0000 (13:18 -0800)
committermitesh <mitesh@cumulusnetworks.com>
Fri, 9 Feb 2018 07:06:17 +0000 (23:06 -0800)
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 <mitesh@cumulusnetworks.com>
zebra/zebra_vxlan.c

index 1e15529b00f1600c4c6f7eb74e92e5f3d8f7da57..850ee509694937f0ee59a51facf4e1b8c721bb22 100644 (file)
@@ -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];