From be627102c04cd20aeb3e6df99152ffb428a76a3c Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 19 Mar 2018 17:35:39 -0400 Subject: [PATCH] zebra: fix static route config write Signed-off-by: Quentin Young --- zebra/zebra_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index 9ae60e011c..35d4bd533d 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -2230,7 +2230,7 @@ int static_config(struct vty *vty, struct zebra_vrf *zvrf, afi_t afi, if (shr->flag_str) vty_out(vty, "%s ", shr->flag_str); if (shr->tag_str) - vty_out(vty, "tag %s", shr->tag_str); + vty_out(vty, "tag %s ", shr->tag_str); if (shr->distance_str) vty_out(vty, "%s ", shr->distance_str); if (shr->label_str) -- 2.39.5