summaryrefslogtreecommitdiff
path: root/drivers/dahdi/dahdi-base.c
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2011-04-25 14:22:39 +0000
committerShaun Ruffell <sruffell@digium.com>2011-04-25 14:22:39 +0000
commitf48dae6268cc58dbd883e60e12c349adcbdfd669 (patch)
tree45af13e1d12a12a33055345cf58cb278ace02ffa /drivers/dahdi/dahdi-base.c
parentc9e3108de637151e3dd56ade26a918ad9e36fc92 (diff)
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@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9912 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/dahdi-base.c')
-rw-r--r--drivers/dahdi/dahdi-base.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dahdi/dahdi-base.c b/drivers/dahdi/dahdi-base.c
index 029c928..f62d221 100644
--- a/drivers/dahdi/dahdi-base.c
+++ b/drivers/dahdi/dahdi-base.c
@@ -3368,6 +3368,7 @@ struct dahdi_tone *dahdi_mf_tone(const struct dahdi_chan *chan, char digit, int
case 'C':
case 'D':
tone_index = DAHDI_TONE_DTMF_A + (digit - 'A');
+ break;
case 'W':
return &tone_pause;
default: