mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 08:11:21 +00:00
Merge the cli_cleanup branch.
This work is done by lmadsen, junky and mvanbaak during AstriDevCon. This is the second audit the CLI got, and this time lmadsen made sure he had _ALL_ modules loaded that have CLI commands in them. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@145121 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -519,18 +519,18 @@ static char *handle_mandebug(struct ast_cli_entry *e, int cmd, struct ast_cli_ar
|
||||
{
|
||||
switch (cmd) {
|
||||
case CLI_INIT:
|
||||
e->command = "manager debug [on|off]";
|
||||
e->usage = "Usage: manager debug [on|off]\n Show, enable, disable debugging of the manager code.\n";
|
||||
e->command = "manager set debug [on|off]";
|
||||
e->usage = "Usage: manager set debug [on|off]\n Show, enable, disable debugging of the manager code.\n";
|
||||
return NULL;
|
||||
case CLI_GENERATE:
|
||||
return NULL;
|
||||
}
|
||||
if (a->argc == 2)
|
||||
if (a->argc == 3)
|
||||
ast_cli(a->fd, "manager debug is %s\n", manager_debug? "on" : "off");
|
||||
else if (a->argc == 3) {
|
||||
if (!strcasecmp(a->argv[2], "on"))
|
||||
else if (a->argc == 4) {
|
||||
if (!strcasecmp(a->argv[3], "on"))
|
||||
manager_debug = 1;
|
||||
else if (!strcasecmp(a->argv[2], "off"))
|
||||
else if (!strcasecmp(a->argv[3], "off"))
|
||||
manager_debug = 0;
|
||||
else
|
||||
return CLI_SHOWUSAGE;
|
||||
|
||||
Reference in New Issue
Block a user