aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-06 20:38:28 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-06 20:38:28 +0000
commit05a3254fcb2e0f4eab0e9d6033402bd0d88815e9 (patch)
tree75afeddc315c5172a3f061d5ab651b3dfa0e8211
parent3131882dd85e619659c838e2620c5806304b00a7 (diff)
Merged revisions 238181 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r238181 | jpeeler | 2010-01-06 14:37:18 -0600 (Wed, 06 Jan 2010) | 8 lines Fix misreverting from 177158. (closes issue #15725) Reported by: shanermn Patches: v1-15725.patch uploaded by dimas (license 88) Tested by: shanermn ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@238182 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 07c7ae1e7..8bc2f542d 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -2477,7 +2477,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
don't want to block, but we do want to at least *try*
to write out all the samples.
*/
- if (user->talking && !(confflags & CONFFLAG_OPTIMIZETALKER)) {
+ if (user->talking || !(confflags & CONFFLAG_OPTIMIZETALKER)) {
careful_write(fd, f->data, f->datalen, 0);
}
}