[asterisk-commits] moy: branch moy/mfcr2-1.4 r193828 - /team/moy/mfcr2-1.4/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon May 11 21:45:13 CDT 2009
Author: moy
Date: Mon May 11 21:45:09 2009
New Revision: 193828
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=193828
Log:
Test fix for the warning about the wrong MFCR2_CATEGORY set in outgoing calls
Modified:
team/moy/mfcr2-1.4/channels/chan_dahdi.c
Modified: team/moy/mfcr2-1.4/channels/chan_dahdi.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/moy/mfcr2-1.4/channels/chan_dahdi.c?view=diff&rev=193828&r1=193827&r2=193828
==============================================================================
--- team/moy/mfcr2-1.4/channels/chan_dahdi.c (original)
+++ team/moy/mfcr2-1.4/channels/chan_dahdi.c Mon May 11 21:45:09 2009
@@ -6318,10 +6318,6 @@
i->isidlecall = 0;
i->alreadyhungup = 0;
#endif
-#ifdef HAVE_OPENR2
- if (i->mfcr2call)
- pbx_builtin_setvar_helper(tmp, "MFCR2_CATEGORY", openr2_proto_get_category_string(i->mfcr2_recvd_category));
-#endif
/* clear the fake event in case we posted one before we had ast_channel */
i->fake_event = 0;
/* Assure there is no confmute on this channel */
@@ -6329,6 +6325,11 @@
/* Configure the new channel jb */
ast_jb_configure(tmp, &global_jbconf);
if (startpbx) {
+#ifdef HAVE_OPENR2
+ if (i->mfcr2call) {
+ pbx_builtin_setvar_helper(tmp, "MFCR2_CATEGORY", openr2_proto_get_category_string(i->mfcr2_recvd_category));
+ }
+#endif
if (ast_pbx_start(tmp)) {
ast_log(LOG_WARNING, "Unable to start PBX on %s\n", tmp->name);
ast_hangup(tmp);
More information about the asterisk-commits
mailing list