[svn-commits] murf: branch group/CDRfix5 r83397 - /team/group/CDRfix5/apps/app_queue.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Sep 21 00:42:56 CDT 2007
Author: murf
Date: Fri Sep 21 00:42:54 2007
New Revision: 83397
URL: http://svn.digium.com/view/asterisk?view=rev&rev=83397
Log:
For the moment, let's just ignore the cdr manipulation in the app_queue stuff, and come back to it later...
Modified:
team/group/CDRfix5/apps/app_queue.c
Modified: team/group/CDRfix5/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/team/group/CDRfix5/apps/app_queue.c?view=diff&rev=83397&r1=83396&r2=83397
==============================================================================
--- team/group/CDRfix5/apps/app_queue.c (original)
+++ team/group/CDRfix5/apps/app_queue.c Fri Sep 21 00:42:54 2007
@@ -2913,11 +2913,11 @@
ast_debug(1, "Arguments being passed to MixMonitor: %s\n", mixmonargs);
/* We purposely lock the CDR so that pbx_exec does not update the application data */
- if (qe->chan->cdr)
- ast_set_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED);
+ /* if (qe->chan->cdr)
+ ast_set_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED); commenting this out until further investigation */
ret = pbx_exec(qe->chan, mixmonapp, mixmonargs);
- if (qe->chan->cdr)
- ast_clear_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED);
+ /* if (qe->chan->cdr)
+ ast_clear_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED); */
} else
ast_log(LOG_WARNING, "Asked to run MixMonitor on this call, but cannot find the MixMonitor app!\n");
More information about the svn-commits
mailing list