summaryrefslogtreecommitdiff
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2012-02-06 16:38:23 +0000
committerJoshua Colp <jcolp@digium.com>2012-02-06 16:38:23 +0000
commitafdd96712c732387deb8b56368468b4a4759a463 (patch)
tree5ac7c226dc08a50aacc4dc82bd8038ab874a290b /apps/app_meetme.c
parent055a19e1286fbb7a3559c9928fad4e7d08af5329 (diff)
Make the 'c' option to MeetMe work even if the 'q' option is used.
(closes issue ASTERISK-17053) Reported by: justdave git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@354084 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 52f53d2d3..3367068f4 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -2617,8 +2617,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
ast_waitstream(chan, "");
}
- if (!ast_test_flag64(confflags, CONFFLAG_QUIET) && ast_test_flag64(confflags, CONFFLAG_ANNOUNCEUSERCOUNT) &&
- conf->users > 1) {
+ if (ast_test_flag64(confflags, CONFFLAG_ANNOUNCEUSERCOUNT) && conf->users > 1) {
int keepplaying = 1;
if (conf->users == 2) {