[svn-commits] sruffell: branch linux/2.4 r9923 - /linux/branches/2.4/drivers/dahdi/
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri May 27 11:48:44 CDT 2011
Author: sruffell
Date: Fri May 27 11:48:40 2011
New Revision: 9923
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9923
Log:
dahdi: Enable DTMF A,B,C, and D digits.
This appears to be an old regression from zaptel r4063 [1] that would
prevent DAHDI from generating the A,B,C, and D digits due to
unintentional drop through on a case statement.
[1] http://svn.asterisk.org/view/zaptel?view=revision&revision=4063
Signed-off-by: Shaun Ruffell <sruffell at digium.com>
Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9912
Modified:
linux/branches/2.4/drivers/dahdi/dahdi-base.c
Modified: linux/branches/2.4/drivers/dahdi/dahdi-base.c
URL: http://svnview.digium.com/svn/dahdi/linux/branches/2.4/drivers/dahdi/dahdi-base.c?view=diff&rev=9923&r1=9922&r2=9923
==============================================================================
--- linux/branches/2.4/drivers/dahdi/dahdi-base.c (original)
+++ linux/branches/2.4/drivers/dahdi/dahdi-base.c Fri May 27 11:48:40 2011
@@ -3330,6 +3330,7 @@
case 'C':
case 'D':
tone_index = DAHDI_TONE_DTMF_A + (digit - 'A');
+ break;
case 'W':
return &tone_pause;
default:
More information about the svn-commits
mailing list