]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zebra_vxlan.c
Merge pull request #3882 from vivek-cumulus/refine_evpn_route_add
[mirror_frr.git] / zebra / zebra_vxlan.c
index 6395f2a6e89088b332d3eba3f1bb09f12ee1e4c4..4cd70381c7728a75a62a5bde7662c6cb3b7236fb 100644 (file)
@@ -7091,9 +7091,10 @@ void zebra_vxlan_print_vnis_detail(struct vty *vty, struct zebra_vrf *zvrf,
        zes.zvrf = zvrf;
 
        /* Display all L2-VNIs */
-       hash_iterate(zvrf->vni_table, (void (*)(struct hash_bucket *,
-                                               void *))zvni_print_hash_detail,
-                    &zes);
+       hash_iterate(
+               zvrf->vni_table,
+               (void (*)(struct hash_bucket *, void *))zvni_print_hash_detail,
+               &zes);
 
        /* Display all L3-VNIs */
        hash_iterate(zrouter.l3vni_table,
@@ -7102,8 +7103,9 @@ void zebra_vxlan_print_vnis_detail(struct vty *vty, struct zebra_vrf *zvrf,
                     &zes);
 
        if (use_json) {
-               vty_out(vty, "%s\n", json_object_to_json_string_ext(
-                                            json, JSON_C_TO_STRING_PRETTY));
+               vty_out(vty, "%s\n",
+                       json_object_to_json_string_ext(
+                               json, JSON_C_TO_STRING_PRETTY));
                json_object_free(json);
        }
 }