From 5ea94a2c36bf4621bcc702e92d5f7d8d39efa825 Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Fri, 27 May 2011 16:48:40 +0000 Subject: 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 Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9912 git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/branches/2.4@9923 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/dahdi-base.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dahdi/dahdi-base.c b/drivers/dahdi/dahdi-base.c index ffa2a59..b98cf35 100644 --- a/drivers/dahdi/dahdi-base.c +++ b/drivers/dahdi/dahdi-base.c @@ -3330,6 +3330,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: -- cgit v1.2.3