diff options
author | Christian Hopps <chopps@labn.net> | 2021-08-26 17:57:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-26 17:57:33 +0200 |
commit | d448e2c5f96b3430fd643f52b9264ca87a45c291 (patch) | |
tree | d38574fb0ce8c936a003287d107eebf6eb718a8c /eigrpd | |
parent | Merge pull request #9492 from Jafaral/pim-cov (diff) | |
parent | *: explicitly print "exit" at the end of every node config (diff) | |
download | frr-d448e2c5f96b3430fd643f52b9264ca87a45c291.tar.xz frr-d448e2c5f96b3430fd643f52b9264ca87a45c291.zip |
Merge pull request #9331 from idryzhov/explicit-exit
*: explicitly print "exit" at the end of every node config
Diffstat (limited to 'eigrpd')
-rw-r--r-- | eigrpd/eigrp_cli.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eigrpd/eigrp_cli.c b/eigrpd/eigrp_cli.c index 35536979e..d61f43586 100644 --- a/eigrpd/eigrp_cli.c +++ b/eigrpd/eigrp_cli.c @@ -96,6 +96,7 @@ void eigrp_cli_show_header(struct vty *vty, struct lyd_node *dnode, void eigrp_cli_show_end_header(struct vty *vty, struct lyd_node *dnode) { + vty_out(vty, "exit\n"); vty_out(vty, "!\n"); } |