[asterisk-commits] murf: branch 1.6.1 r156354 - in /branches/1.6.1: ./ main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Nov 12 14:11:54 CST 2008
Author: murf
Date: Wed Nov 12 14:11:54 2008
New Revision: 156354
URL: http://svn.digium.com/view/asterisk?view=rev&rev=156354
Log:
Merged revisions 156299 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r156299 | murf | 2008-11-12 12:47:29 -0700 (Wed, 12 Nov 2008) | 26 lines
Merged revisions 156297 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r156297 | murf | 2008-11-12 12:36:16 -0700 (Wed, 12 Nov 2008) | 18 lines
It turns out that the 0x0XX00 codes being returned for
N, X, and Z are off by one, as per conversation with
jsmith on #asterisk-dev; he was teaching a class
and disconcerted that this published rule was not
being followed, with patterns _NXX, _[1-8]22 and
_[2-9]22... and NXX was winning, but [1-8] should
have been.
This change, tested on these 3 patterns now
picks the proper one.
However, this change may surprise users who
set up dialplans based on previous behavior,
which has been there for what, 2 and half
years or so now.
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/main/pbx.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/main/pbx.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/main/pbx.c?view=diff&rev=156354&r1=156353&r2=156354
==============================================================================
--- branches/1.6.1/main/pbx.c (original)
+++ branches/1.6.1/main/pbx.c Wed Nov 12 14:11:54 2008
@@ -1700,13 +1700,13 @@
return 0x0000 | (c & 0xff);
case 'N': /* 2..9 */
- return 0x0700 | '2' ;
+ return 0x0800 | '2' ;
case 'X': /* 0..9 */
- return 0x0900 | '0';
+ return 0x0A00 | '0';
case 'Z': /* 1..9 */
- return 0x0800 | '1';
+ return 0x0900 | '1';
case '.': /* wildcard */
return 0x10000;
More information about the asterisk-commits
mailing list