summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenato Westphal <renato@openbsd.org>2018-03-20 08:52:25 -0300
committerGitHub <noreply@github.com>2018-03-20 08:52:25 -0300
commit067d01be5761dedb4bcc35b809568feae2fe04bd (patch)
tree2fdfdd912083b7250bded4b12c23ddd798087a7e
parent08a4253e71015506dabe07230ca82ac59ab30385 (diff)
parentbe627102c04cd20aeb3e6df99152ffb428a76a3c (diff)
Merge pull request #1936 from qlyoung/fix-static-route-config-write-missing-space
zebra: fix static route config write
-rw-r--r--zebra/zebra_vty.c2
1 files changed, 1 insertions, 1 deletions
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)