[asterisk-commits] file: trunk r103325 - in /trunk: ./ apps/app_meetme.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Feb 11 16:10:56 CST 2008
Author: file
Date: Mon Feb 11 16:10:55 2008
New Revision: 103325
URL: http://svn.digium.com/view/asterisk?view=rev&rev=103325
Log:
Merged revisions 103324 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r103324 | file | 2008-02-11 18:09:07 -0400 (Mon, 11 Feb 2008) | 4 lines
If entering a conference with the 'w' option ensure that we can't listen or speak until the marked user appears.
(closes issue #11835)
Reported by: alanmcmillan
........
Modified:
trunk/ (props changed)
trunk/apps/app_meetme.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?view=diff&rev=103325&r1=103324&r2=103325
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Mon Feb 11 16:10:55 2008
@@ -1876,7 +1876,9 @@
}
}
- if (confflags & CONFFLAG_MONITOR)
+ if (confflags & CONFFLAG_WAITMARKED)
+ ztc.confmode = ZT_CONF_CONF;
+ else if (confflags & CONFFLAG_MONITOR)
ztc.confmode = ZT_CONF_CONFMON | ZT_CONF_LISTENER;
else if (confflags & CONFFLAG_TALKER)
ztc.confmode = ZT_CONF_CONF | ZT_CONF_TALKER;
More information about the asterisk-commits
mailing list