diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2017-10-21 02:16:57 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2017-10-24 23:30:30 +0200 |
commit | efd7904eabd3a79e14301b1a2005e36347293d4a (patch) | |
tree | 33d7c9e1061da0213a766402295d0e931ed2088f /nhrpd | |
parent | lib: fix coverity warnings introduced by the iface rb-tree conversion (diff) | |
download | frr-efd7904eabd3a79e14301b1a2005e36347293d4a.tar.xz frr-efd7904eabd3a79e14301b1a2005e36347293d4a.zip |
*: add missing \n in some help strings
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'nhrpd')
-rw-r--r-- | nhrpd/nhrp_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nhrpd/nhrp_vty.c b/nhrpd/nhrp_vty.c index ab052ac04..e0d0268e4 100644 --- a/nhrpd/nhrp_vty.c +++ b/nhrpd/nhrp_vty.c @@ -438,7 +438,7 @@ DEFUN(if_nhrp_mtu, if_nhrp_mtu_cmd, NHRP_STR "Configure NHRP advertised MTU\n" "MTU value\n" - "Advertise bound interface MTU similar to OpenNHRP") + "Advertise bound interface MTU similar to OpenNHRP\n") { VTY_DECLVAR_CONTEXT(interface, ifp); struct nhrp_interface *nifp = ifp->info; @@ -461,7 +461,7 @@ DEFUN(if_no_nhrp_mtu, if_no_nhrp_mtu_cmd, NHRP_STR "Configure NHRP advertised MTU\n" "MTU value\n" - "Advertise bound interface MTU similar to OpenNHRP") + "Advertise bound interface MTU similar to OpenNHRP\n") { VTY_DECLVAR_CONTEXT(interface, ifp); struct nhrp_interface *nifp = ifp->info; |