From: Richard Mudgett Date: Fri, 13 Aug 2010 23:57:21 +0000 (+0000) Subject: Merged revisions 282334 via svnmerge from X-Git-Tag: 11.0.0-beta1~2457 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc4651888bc1a16e282a8b8629cc914050cc6ef2;p=thirdparty%2Fasterisk.git Merged revisions 282334 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r282334 | rmudgett | 2010-08-13 18:53:36 -0500 (Fri, 13 Aug 2010) | 6 lines 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. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@282335 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index 313225fbca..c2089acc3e 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -2887,6 +2887,7 @@ static void my_pri_fixup_chans(void *chan_old, void *chan_new) /* 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) */