[asterisk-commits] rmudgett: branch 1.8 r282334 - /branches/1.8/channels/chan_dahdi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Aug 13 18:53:47 CDT 2010


Author: rmudgett
Date: Fri Aug 13 18:53:36 2010
New Revision: 282334

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=282334
Log:
PRI CCSS may use a stale dial string for the recall dial string.

If an outgoing call negotiates a different B channel than initially
requested, the saved original dial string was not transferred to the new B
channel.  CCSS uses that dial string to generate the recall dial string.

Modified:
    branches/1.8/channels/chan_dahdi.c

Modified: branches/1.8/channels/chan_dahdi.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_dahdi.c?view=diff&rev=282334&r1=282333&r2=282334
==============================================================================
--- branches/1.8/channels/chan_dahdi.c (original)
+++ branches/1.8/channels/chan_dahdi.c Fri Aug 13 18:53:36 2010
@@ -2887,6 +2887,7 @@
 
 	/* More stuff to transfer to the new channel. */
 	new_chan->law = old_chan->law;
+	strcpy(new_chan->dialstring, old_chan->dialstring);
 }
 #endif	/* defined(HAVE_PRI) */
 




More information about the asterisk-commits mailing list