mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
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
This commit is contained in:
@@ -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':
|
||||
|
Reference in New Issue
Block a user