diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-07-05 20:30:36 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-07-05 21:33:00 +0200 |
commit | 7111c1a0cd00440fc5aa188eedbabde2a706bff0 (patch) | |
tree | b0edfbb66cc31d9547db5bd7659dbbe23eaa8e6d /vtysh | |
parent | lib: warn about too much docstring (diff) | |
download | frr-7111c1a0cd00440fc5aa188eedbabde2a706bff0.tar.xz frr-7111c1a0cd00440fc5aa188eedbabde2a706bff0.zip |
*: fix excess docstring
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/vtysh.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 0e04f4bf8..fe402f709 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1271,9 +1271,8 @@ DEFUNSH (VTYSH_BGPD, address_family_evpn_cmd, "address-family <l2vpn evpn>", "Enter Address Family command mode\n" - "EVPN Address family\n" - "Layer2 VPN Address family\n" - "Ethernet Virtual Private Network Subsequent Address Family\n") + "Address Family\n" + "Address Family modifier\n") { vty->node = BGP_EVPN_NODE; return CMD_SUCCESS; @@ -2445,10 +2444,9 @@ DEFUNSH (VTYSH_ALL, DEFUNSH (VTYSH_ALL, vtysh_config_password, vtysh_password_cmd, - "password (8-8) WORD", + "password [(8-8)] WORD", "Assign the terminal connection password\n" "Specifies a HIDDEN password will follow\n" - "dummy string \n" "The HIDDEN line password string\n") { return CMD_SUCCESS; |