From: Donald Sharp Date: Fri, 15 Jun 2018 16:34:31 +0000 (-0400) Subject: vtysh: Fix 'no log syslog ..' to be correct X-Git-Tag: frr-6.1-dev~262^2~5 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=1f1432364911625d5abd6384b190a2d75c37120f;p=matthieu%2Ffrr.git vtysh: Fix 'no log syslog ..' to be correct The vtysh version of `no log syslog...` was out of sync with what is actually correct. Fix. Signed-off-by: Donald Sharp --- diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 309493b13e..0c3d84f38f 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -2415,10 +2415,11 @@ DEFUNSH(VTYSH_ALL, vtysh_log_syslog, vtysh_log_syslog_cmd, } DEFUNSH(VTYSH_ALL, no_vtysh_log_syslog, no_vtysh_log_syslog_cmd, - "no log syslog [LEVEL]", NO_STR + "no log syslog []", + NO_STR "Logging control\n" "Cancel logging to syslog\n" - "Logging level\n") + LOG_LEVEL_DESC) { return CMD_SUCCESS; }