diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-19 17:35:39 -0400 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-19 17:37:00 -0400 |
| commit | be627102c04cd20aeb3e6df99152ffb428a76a3c (patch) | |
| tree | da7fdead270d2da63569467b97aaa6bee5c548a7 /zebra/zebra_vty.c | |
| parent | 5a52387a11c907f6435e76ac27741f734106b5a5 (diff) | |
zebra: fix static route config write
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_vty.c')
| -rw-r--r-- | zebra/zebra_vty.c | 2 |
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) |
