diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-06-14 13:50:54 +0200 |
---|---|---|
committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-06-22 15:10:56 +0200 |
commit | 7818c5fba052c0c2fdfaa2620404178167e9c103 (patch) | |
tree | 8270b88ef58344c744438c7ced29757ffd6c181c | |
parent | bfdd: use microseconds timers in YANG (diff) | |
download | frr-7818c5fba052c0c2fdfaa2620404178167e9c103.tar.xz frr-7818c5fba052c0c2fdfaa2620404178167e9c103.zip |
bfdd: add not '\n' to shutdown help string
help string had not a '\n' at the end of the line for bfd shutdown help
command.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
-rw-r--r-- | bfdd/bfdd_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfdd/bfdd_cli.c b/bfdd/bfdd_cli.c index 29b77a409..7e1499782 100644 --- a/bfdd/bfdd_cli.c +++ b/bfdd/bfdd_cli.c @@ -224,7 +224,7 @@ DEFPY( bfd_peer_shutdown, bfd_peer_shutdown_cmd, "[no] shutdown", NO_STR - "Disable BFD peer") + "Disable BFD peer\n") { nb_cli_enqueue_change(vty, "./administrative-down", NB_OP_MODIFY, no ? "false" : "true"); |