[asterisk-commits] seanbright: trunk r217286 - /trunk/apps/app_meetme.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 8 17:17:10 CDT 2009
Author: seanbright
Date: Tue Sep 8 17:17:08 2009
New Revision: 217286
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=217286
Log:
Fix compilation of app_meetme.
Reported by ebroad in #asterisk-bugs
Modified:
trunk/apps/app_meetme.c
Modified: trunk/apps/app_meetme.c
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/apps/app_meetme.c?view=diff&rev=217286&r1=217285&r2=217286
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Tue Sep 8 17:17:08 2009
@@ -3275,7 +3275,7 @@
if ((conf->transframe[idx]->frametype != AST_FRAME_NULL) &&
can_write(chan, confflags)) {
struct ast_frame *cur;
- if (musiconhold && !ast_dsp_silence(dsp, conf->transframe[index], &confsilence) && confsilence < MEETME_DELAYDETECTTALK) {
+ if (musiconhold && !ast_dsp_silence(dsp, conf->transframe[idx], &confsilence) && confsilence < MEETME_DELAYDETECTTALK) {
ast_moh_stop(chan);
mohtempstopped = 1;
}
More information about the asterisk-commits
mailing list