]> git.puffer.fish Git - matthieu/frr.git/commitdiff
ripngd: Fix missing newlines at end of help strings
authorDonald Sharp <sharpd@cumulusnetworks.com>
Sat, 27 May 2017 22:20:51 +0000 (18:20 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Sat, 27 May 2017 22:20:51 +0000 (18:20 -0400)
Found by visual inspection and some squinting

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
ripngd/ripng_interface.c
ripngd/ripngd.c

index 81b68ad9d72fb32da6f5ff689bee92a776ee14eb..41879b259bbf6929c366ba01eeec781c44c0c4ed 100644 (file)
@@ -949,7 +949,7 @@ DEFUN (ripng_network,
        ripng_network_cmd,
        "network IF_OR_ADDR",
        "RIPng enable on specified interface or network.\n"
-       "Interface or address")
+       "Interface or address\n")
 {
   int idx_if_or_addr = 1;
   int ret;
@@ -979,7 +979,7 @@ DEFUN (no_ripng_network,
        "no network IF_OR_ADDR",
        NO_STR
        "RIPng enable on specified interface or network.\n"
-       "Interface or address")
+       "Interface or address\n")
 {
   int idx_if_or_addr = 2;
   int ret;
index a58b7c250d8d840d2fe9c4d2c24d10e09be341e6..f373598bea025c4c523fa7786aba0d76c06ba6c1 100644 (file)
@@ -2170,7 +2170,7 @@ DEFUN (clear_ipv6_rip,
        "clear ipv6 ripng",
        CLEAR_STR
        IPV6_STR
-       "Clear IPv6 RIP database")
+       "Clear IPv6 RIP database\n")
 {
   struct route_node *rp;
   struct ripng_info *rinfo;
@@ -2357,7 +2357,7 @@ DEFUN (no_ripng_aggregate_address,
        "no aggregate-address X:X::X:X/M",
        NO_STR
        "Delete aggregate RIPng route announcement\n"
-       "Aggregate network")
+       "Aggregate network\n")
 {
   int idx_ipv6_prefixlen = 2;
   int ret;
@@ -2576,7 +2576,7 @@ DEFUN (show_ipv6_protocols,
        "show ipv6 protocols",
        SHOW_STR
        IPV6_STR
-       "Routing protocol information")
+       "Routing protocol information\n")
 {
   if (! ripng)
     return CMD_SUCCESS;