aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_oss.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/chan_oss.c')
-rw-r--r--channels/chan_oss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_oss.c b/channels/chan_oss.c
index 66de2dd7b..a7e41899a 100644
--- a/channels/chan_oss.c
+++ b/channels/chan_oss.c
@@ -1147,9 +1147,9 @@ static char *console_mute(struct ast_cli_entry *e, int cmd, struct ast_cli_args
}
s = a->argv[e->args-2];
if (!strcasecmp(s, "mute"))
- o->mute = toggle ? ~o->mute : 1;
+ o->mute = toggle ? !o->mute : 1;
else if (!strcasecmp(s, "unmute"))
- o->mute = toggle ? ~o->mute : 0;
+ o->mute = toggle ? !o->mute : 0;
else
return CLI_SHOWUSAGE;
ast_cli(a->fd, "Console mic is %s\n", o->mute ? "off" : "on");