Skip to content

Commit

Permalink
bgpd: add missing newlines to help strings in bgp_rpki.c command defi…
Browse files Browse the repository at this point in the history
…nitions

Signed-off-by: Marcel Röthke <marcel.roethke@haw-hamburg.de>
  • Loading branch information
mroethke committed Nov 14, 2017
1 parent a220aec commit 08f9cfb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bgpd/bgp_rpki.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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);

Expand All @@ -1030,15 +1030,15 @@ 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);
}

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);

Expand All @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 08f9cfb

Please sign in to comment.