summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-12-25 03:34:09 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-12-25 03:34:09 +0000
commit27f8b5bc2de6b505da6f409293c02d30efc064ed (patch)
tree3ee6e06c99c4f7ea2e1ec67233514d76e12f83f4 /channels
parentba57c36bbb41783d9d02a44517466d361c776cc6 (diff)
Change the abbreviated TON from 'A' to 'V', since 'A' is a legitimate DTMF
character. Also, fix the documentation to match the code. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@94772 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index d3adaf3ed..2d61d8cfb 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -2562,7 +2562,7 @@ static int zt_call(struct ast_channel *ast, char *rdest, int timeout)
case 'S':
pridialplan = (PRI_TON_SUBSCRIBER << 4) | (pridialplan & 0xf);
break;
- case 'A':
+ case 'V':
pridialplan = (PRI_TON_ABBREVIATED << 4) | (pridialplan & 0xf);
break;
case 'R':
@@ -2632,7 +2632,7 @@ static int zt_call(struct ast_channel *ast, char *rdest, int timeout)
case 'S':
prilocaldialplan = (PRI_TON_SUBSCRIBER << 4) | (prilocaldialplan & 0xf);
break;
- case 'A':
+ case 'V':
prilocaldialplan = (PRI_TON_ABBREVIATED << 4) | (prilocaldialplan & 0xf);
break;
case 'R':