[asterisk-commits] tilghman: branch 1.6.0 r121011 - in /branches/1.6.0: ./ main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jun 6 14:56:08 CDT 2008
Author: tilghman
Date: Fri Jun 6 14:56:08 2008
New Revision: 121011
URL: http://svn.digium.com/view/asterisk?view=rev&rev=121011
Log:
Merged revisions 121010 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r121010 | tilghman | 2008-06-06 14:55:08 -0500 (Fri, 06 Jun 2008) | 6 lines
Make extension match characters case-insensitive.
(closes issue #12777)
Reported by: jsmith
Patches:
lower_case_patterns-trunk-v1.patch uploaded by jsmith (license 15)
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/main/pbx.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/pbx.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/main/pbx.c?view=diff&rev=121011&r1=121010&r2=121011
==============================================================================
--- branches/1.6.0/main/pbx.c (original)
+++ branches/1.6.0/main/pbx.c Fri Jun 6 14:56:08 2008
@@ -1477,7 +1477,7 @@
; /* ignore some characters */
/* always return unless we have a set of chars */
- switch (c) {
+ switch (toupper(c)) {
default: /* ordinary character */
return 0x0000 | (c & 0xff);
More information about the asterisk-commits
mailing list