diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-10-23 21:20:01 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-10-23 22:47:42 +0000 |
| commit | e8be380a539ad29661637042ca619b935d4c8bbb (patch) | |
| tree | 99eb8c9ba1fa73e295c8d0eae47895ef5674ec70 /pimd/pim_instance.c | |
| parent | 0abf76d5192121b63405b1b535a70441e5cf857e (diff) | |
vtysh: fix exit-vrf printing
Resolves issue with exit-vrf being placed at the end of zebra's portion
of a vrf block, but before other daemons' portions of the same config
block.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_instance.c')
| -rw-r--r-- | pimd/pim_instance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_instance.c b/pimd/pim_instance.c index 2550651464..b0d7a7b2db 100644 --- a/pimd/pim_instance.c +++ b/pimd/pim_instance.c @@ -188,7 +188,7 @@ static int pim_vrf_config_write(struct vty *vty) pim_global_config_write_worker(pim, vty); if (vrf->vrf_id != VRF_DEFAULT) - vty_endframe(vty, "!\n"); + vty_endframe(vty, " exit-vrf\n!\n"); } return 0; |
