diff options
| author | Renato Westphal <renato@openbsd.org> | 2017-09-05 21:57:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-05 21:57:44 -0300 |
| commit | 51ce5c716c8259edf8d79565ffc1f834b9cf9d42 (patch) | |
| tree | ea7632d85dbab7ca037396f9406d60e20f5d7904 /pimd/pim_instance.c | |
| parent | f24fdd9921b98f99d63b1299029d177954090243 (diff) | |
| parent | f82655801512b373fc84293950c9199b0daa1280 (diff) | |
Merge pull request #1092 from donaldsharp/unreachable
Grab bag of issues
Diffstat (limited to 'pimd/pim_instance.c')
| -rw-r--r-- | pimd/pim_instance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_instance.c b/pimd/pim_instance.c index d1f8085b48..5a59342947 100644 --- a/pimd/pim_instance.c +++ b/pimd/pim_instance.c @@ -202,9 +202,9 @@ static int pim_vrf_config_write(struct vty *vty) if (vrf->vrf_id == VRF_DEFAULT) continue; - vty_out(vty, "vrf %s\n", vrf->name); + vty_frame(vty, "vrf %s\n", vrf->name); pim_global_config_write_worker(pim, vty); - vty_out(vty, "!\n"); + vty_endframe(vty, "!\n"); } return 0; |
