diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-29 17:48:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-29 17:48:36 -0400 |
| commit | 32592ffb4f04f18b7eacaeca3c6fc254bafbc5b3 (patch) | |
| tree | 4a17e3eebc48dfe96dd0e6cb0578b937e1b41dd9 /ospf6d/ospf6_interface.c | |
| parent | b9d4bfa71ec726c10b915761ede6d91a33d3d385 (diff) | |
| parent | 5309b14eae13b6664646c93d2ad8ecb6401c8593 (diff) | |
Merge pull request #1056 from opensourcerouting/oldbits-0
"pathspace" options, vtysh-suid-cleanups, "vty_frame()"
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index bb63fb966e..8cfed81a81 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -1755,7 +1755,7 @@ static int config_write_ospf6_interface(struct vty *vty) if (oi == NULL) continue; - vty_out(vty, "interface %s\n", oi->interface->name); + vty_frame(vty, "interface %s\n", oi->interface->name); if (ifp->desc) vty_out(vty, " description %s\n", ifp->desc); @@ -1808,7 +1808,7 @@ static int config_write_ospf6_interface(struct vty *vty) ospf6_bfd_write_config(vty, oi); - vty_out(vty, "!\n"); + vty_endframe(vty, "!\n"); } return 0; } |
