aboutsummaryrefslogtreecommitdiffstats
path: root/main/cli.c
diff options
context:
space:
mode:
authorjamesgolovich <jamesgolovich@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-13 08:38:50 +0000
committerjamesgolovich <jamesgolovich@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-13 08:38:50 +0000
commit0a7e7ffd14897512a6339b6e1bbea661954b9e8b (patch)
treeb2d69ab9bbb9a3fdad166a07acecaf12da192bd6 /main/cli.c
parentac808d6bde47ded2e36eb4af4380d5cad8547488 (diff)
Fix compiling cli.c due to differences with new cli system (closes issue
0010966) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@85535 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/cli.c')
-rw-r--r--main/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/cli.c b/main/cli.c
index 3a08eae7c..7c87e18e4 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -374,7 +374,7 @@ static char *handle_logger_mute(struct ast_cli_entry *e, int cmd, struct ast_cli
if (a->argc < 2 || a->argc > 3)
return CLI_SHOWUSAGE;
- if (a->argc == 3 && !strcasecmp(argv[2], "silent"))
+ if (a->argc == 3 && !strcasecmp(a->argv[2], "silent"))
ast_console_toggle_mute(a->fd, 1);
else
ast_console_toggle_mute(a->fd, 0);