diff options
author | Marcel Röthke <marcel.roethke@haw-hamburg.de> | 2017-11-14 09:51:28 +0100 |
---|---|---|
committer | Marcel Röthke <marcel.roethke@haw-hamburg.de> | 2017-11-14 09:58:09 +0100 |
commit | 08f9cfb841d8acc2c1e872326653ba1670f74c89 (patch) | |
tree | 7b5847d625f843e6d51c86175aa7c392cb3b5f09 /bgpd/bgp_rpki.c | |
parent | bgpd: fix prefix count in show rpki prefix-table (diff) | |
download | frr-08f9cfb841d8acc2c1e872326653ba1670f74c89.tar.xz frr-08f9cfb841d8acc2c1e872326653ba1670f74c89.zip |
bgpd: add missing newlines to help strings in bgp_rpki.c command definitions
Signed-off-by: Marcel Röthke <marcel.roethke@haw-hamburg.de>
Diffstat (limited to 'bgpd/bgp_rpki.c')
-rw-r--r-- | bgpd/bgp_rpki.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bgpd/bgp_rpki.c b/bgpd/bgp_rpki.c index 182f872eb..1a4247851 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -915,7 +915,7 @@ DEFUN (show_rpki_prefix_table, "show rpki prefix-table", SHOW_STR RPKI_OUTPUT_STRING - "Show validated prefixes which were received from RPKI Cache") + "Show validated prefixes which were received from RPKI Cache\n") { struct listnode *cache_node; struct cache *cache; @@ -939,7 +939,7 @@ DEFUN (show_rpki_cache_server, "show rpki cache-server", SHOW_STR RPKI_OUTPUT_STRING - "SHOW configured cache server") + "SHOW configured cache server\n") { struct listnode *cache_node; struct cache *cache; @@ -959,7 +959,7 @@ DEFUN (show_rpki_cache_connection, "show rpki cache-connection", SHOW_STR RPKI_OUTPUT_STRING - "Show to which RPKI Cache Servers we have a connection") + "Show to which RPKI Cache Servers we have a connection\n") { if (is_synchronized()) { struct listnode *cache_node; @@ -1019,7 +1019,7 @@ DEFUN (show_rpki_cache_connection, DEFUN_NOSH (rpki_exit, rpki_exit_cmd, "exit", - "Exit rpki configuration and restart rpki session") + "Exit rpki configuration and restart rpki session\n") { int ret = reset(false); @@ -1030,7 +1030,7 @@ DEFUN_NOSH (rpki_exit, DEFUN_NOSH (rpki_quit, rpki_quit_cmd, "quit", - "Exit rpki configuration mode") + "Exit rpki configuration mode\n") { return rpki_exit(self, vty, argc, argv); } @@ -1038,7 +1038,7 @@ DEFUN_NOSH (rpki_quit, DEFUN_NOSH (rpki_end, rpki_end_cmd, "end", - "End rpki configuration, restart rpki session and change to enable mode.") + "End rpki configuration, restart rpki session and change to enable mode.\n") { int ret = reset(false); @@ -1060,7 +1060,7 @@ DEFUN (debug_rpki, debug_rpki_cmd, "debug rpki", DEBUG_STR - "Enable debugging for rpki") + "Enable debugging for rpki\n") { rpki_debug = 1; return CMD_SUCCESS; @@ -1071,7 +1071,7 @@ DEFUN (no_debug_rpki, "no debug rpki", NO_STR DEBUG_STR - "Disable debugging for rpki") + "Disable debugging for rpki\n") { rpki_debug = 0; return CMD_SUCCESS; |