[asterisk-commits] trunk r30384 - in /trunk: ./ apps/app_meetme.c
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Thu May 25 13:05:53 MST 2006
    
    
  
Author: file
Date: Thu May 25 15:05:52 2006
New Revision: 30384
URL: http://svn.digium.com/view/asterisk?rev=30384&view=rev
Log:
Merged revisions 30373 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r30373 | file | 2006-05-25 17:03:11 -0300 (Thu, 25 May 2006) | 2 lines
Don't play the enter sound twice when a person joins a conference after the leader has joined it. (issue #6138 reported by shanermn)
........
Modified:
    trunk/   (props changed)
    trunk/apps/app_meetme.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?rev=30384&r1=30383&r2=30384&view=diff
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Thu May 25 15:05:52 2006
@@ -1145,7 +1145,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) || ((confflags & CONFFLAG_MARKEDUSER) && (conf->markedusers >= 1)))
 				conf_play(chan, conf, ENTER);
 	}
 
    
    
More information about the asterisk-commits
mailing list