[svn-commits] tilghman: branch 1.6.2 r270585 - in /branches/1.6.2: ./ main/pbx.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jun 15 13:27:36 CDT 2010


Author: tilghman
Date: Tue Jun 15 13:27:32 2010
New Revision: 270585

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=270585
Log:
Merged revisions 270584 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r270584 | tilghman | 2010-06-15 13:26:26 -0500 (Tue, 15 Jun 2010) | 12 lines
  
  Merged revisions 270583 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r270583 | tilghman | 2010-06-15 13:25:12 -0500 (Tue, 15 Jun 2010) | 5 lines
    
    Variables have always been case-sensitive, so we should not be removing case-insensitive matches.
    
    Bug reported via the -dev list.  See
    http://lists.digium.com/pipermail/asterisk-dev/2010-June/044510.html
  ........
................

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/main/pbx.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/main/pbx.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/pbx.c?view=diff&rev=270585&r1=270584&r2=270585
==============================================================================
--- branches/1.6.2/main/pbx.c (original)
+++ branches/1.6.2/main/pbx.c Tue Jun 15 13:27:32 2010
@@ -9060,7 +9060,7 @@
 	}
 
 	AST_LIST_TRAVERSE_SAFE_BEGIN(headp, newvariable, entries) {
-		if (strcasecmp(ast_var_name(newvariable), nametail) == 0) {
+		if (strcmp(ast_var_name(newvariable), nametail) == 0) {
 			/* there is already such a variable, delete it */
 			AST_LIST_REMOVE_CURRENT(entries);
 			ast_var_delete(newvariable);




More information about the svn-commits mailing list