[svn-commits] tilghman: branch 1.6.0 r131792 - in /branches/1.6.0: ./ channels/chan_dahdi.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Jul 17 15:38:07 CDT 2008
Author: tilghman
Date: Thu Jul 17 15:38:07 2008
New Revision: 131792
URL: http://svn.digium.com/view/asterisk?view=rev&rev=131792
Log:
Merged revisions 131791 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r131791 | tilghman | 2008-07-17 15:37:14 -0500 (Thu, 17 Jul 2008) | 15 lines
Merged revisions 131790 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r131790 | tilghman | 2008-07-17 15:35:44 -0500 (Thu, 17 Jul 2008) | 7 lines
Revert part of issue #5620 (revision 6965) as it appears that it was in error.
This should fix talk call progress on analog lines.
(closes issue #12178)
Reported by: michael-fig
Patches:
20080717__bug12178.diff.txt uploaded by Corydon76 (license 14)
........
................
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/chan_dahdi.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_dahdi.c?view=diff&rev=131792&r1=131791&r2=131792
==============================================================================
--- branches/1.6.0/channels/chan_dahdi.c (original)
+++ branches/1.6.0/channels/chan_dahdi.c Thu Jul 17 15:38:07 2008
@@ -5917,12 +5917,13 @@
else
i->dsp = NULL;
if (i->dsp) {
- i->dsp_features = features & ~DSP_PROGRESS_TALK;
+ i->dsp_features = features;
#if defined(HAVE_PRI) || defined(HAVE_SS7)
/* We cannot do progress detection until receives PROGRESS message */
if (i->outgoing && ((i->sig == SIG_PRI) || (i->sig == SIG_BRI) || (i->sig == SIG_BRI_PTMP) || (i->sig == SIG_SS7))) {
/* Remember requested DSP features, don't treat
talking as ANSWER */
+ i->dsp_features = features & ~DSP_PROGRESS_TALK;
features = 0;
}
#endif
More information about the svn-commits
mailing list