summaryrefslogtreecommitdiffstats
path: root/babeld
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-08-29 23:48:36 +0200
committerGitHub <noreply@github.com>2017-08-29 23:48:36 +0200
commit32592ffb4f04f18b7eacaeca3c6fc254bafbc5b3 (patch)
tree4a17e3eebc48dfe96dd0e6cb0578b937e1b41dd9 /babeld
parentMerge pull request #1074 from opensourcerouting/ospf6-plist-segv (diff)
parentdoc: new frr-args(8) man page with general options (diff)
downloadfrr-32592ffb4f04f18b7eacaeca3c6fc254bafbc5b3.tar.xz
frr-32592ffb4f04f18b7eacaeca3c6fc254bafbc5b3.zip
Merge pull request #1056 from opensourcerouting/oldbits-0
"pathspace" options, vtysh-suid-cleanups, "vty_frame()"
Diffstat (limited to 'babeld')
-rw-r--r--babeld/babel_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c
index 9fa32ee6f..2895ac1e6 100644
--- a/babeld/babel_interface.c
+++ b/babeld/babel_interface.c
@@ -1321,7 +1321,7 @@ interface_config_write (struct vty *vty)
int write = 0;
for (ALL_LIST_ELEMENTS_RO (vrf_iflist(VRF_DEFAULT), node, ifp)) {
- vty_out (vty, "interface %s\n",ifp->name);
+ vty_frame (vty, "interface %s\n",ifp->name);
if (ifp->desc)
vty_out (vty, " description %s\n",ifp->desc);
babel_interface_nfo *babel_ifp = babel_get_if_nfo (ifp);
@@ -1377,7 +1377,7 @@ interface_config_write (struct vty *vty)
write++;
}
}
- vty_out (vty, "!\n");
+ vty_endframe (vty, "!\n");
write++;
}
return write;