From 296110195238fb4addacc179d49c5e6498e9dfb2 Mon Sep 17 00:00:00 2001 From: Don Slice Date: Mon, 29 Oct 2018 17:16:14 +0000 Subject: [PATCH] zebra: remove space from json string for show evpn mac vni mac Signed-off-by: Don Slice --- zebra/zebra_vxlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index e694d36994..e3a5b32f1b 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -605,7 +605,7 @@ static void zvni_print_mac(zebra_mac_t *mac, void *ctxt, json_object *json) json_mac, "remoteVtep", inet_ntoa(mac->fwd_info.r_vtep_ip)); } else if (CHECK_FLAG(mac->flags, ZEBRA_MAC_AUTO)) - json_object_string_add(json_mac, "type", "auto mac"); + json_object_string_add(json_mac, "type", "auto"); if (CHECK_FLAG(mac->flags, ZEBRA_MAC_STICKY)) json_object_boolean_true_add(json_mac, "stickyMac"); -- 2.39.5