diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-09 23:04:00 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-10 21:49:18 +0200 |
commit | 6500e013dbc2acd10d619f899c9a0f93b008d5fa (patch) | |
tree | e4443b4b4055be1739daae550c0acfb27f4231c5 /vtysh | |
parent | Address the error "Dead assignment" of static analysif (diff) | |
download | frr-6500e013dbc2acd10d619f899c9a0f93b008d5fa.tar.xz frr-6500e013dbc2acd10d619f899c9a0f93b008d5fa.zip |
vtysh: add \n to 'router rip[ng]' docstrings
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/vtysh.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 682cd99c2..5bb969bef 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1315,22 +1315,22 @@ DEFUNSH (VTYSH_RIPD, } DEFUNSH (VTYSH_RIPD, - router_rip, - router_rip_cmd, - "router rip", - ROUTER_STR - "RIP") + router_rip, + router_rip_cmd, + "router rip", + ROUTER_STR + "RIP\n") { vty->node = RIP_NODE; return CMD_SUCCESS; } DEFUNSH (VTYSH_RIPNGD, - router_ripng, - router_ripng_cmd, - "router ripng", - ROUTER_STR - "RIPng") + router_ripng, + router_ripng_cmd, + "router ripng", + ROUTER_STR + "RIPng\n") { vty->node = RIPNG_NODE; return CMD_SUCCESS; |