[Asterisk-cvs] asterisk/apps app_meetme.c,1.91,1.92
markster at lists.digium.com
markster at lists.digium.com
Tue Mar 29 00:41:05 CST 2005
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv7586/apps
Modified Files:
app_meetme.c
Log Message:
Fix beep logic error (bug #3888)
Index: app_meetme.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- app_meetme.c 21 Mar 2005 03:23:05 -0000 1.91
+++ app_meetme.c 29 Mar 2005 06:34:50 -0000 1.92
@@ -844,7 +844,7 @@
if (!firstpass && !(confflags & CONFFLAG_MONITOR) && !(confflags & CONFFLAG_ADMIN)) {
firstpass = 1;
if (!(confflags & CONFFLAG_QUIET))
- if ((confflags & CONFFLAG_WAITMARKED) && conf->markedusers >= 1)
+ if (!(confflags & CONFFLAG_WAITMARKED) || (conf->markedusers >= 1))
conf_play(chan, conf, ENTER);
}
conf_flush(fd);
More information about the svn-commits
mailing list