[asterisk-commits] seanbright: branch 1.6.0 r158190 - in /branches/1.6.0: ./ res/ael/pval.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Nov 20 13:42:31 CST 2008


Author: seanbright
Date: Thu Nov 20 13:42:31 2008
New Revision: 158190

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

........
  r158188 | seanbright | 2008-11-20 14:41:23 -0500 (Thu, 20 Nov 2008) | 10 lines
  
  Fix one case where the application argument was not converted from a pipe to
  a comma.  This was causing problems with switch statements with empty expressions.
  
  (closes issue #13901)
  Reported by: smurfix
  Patches:
        20081118_bug13901.diff uploaded by seanbright (license 71)
  Tested by: seanbright
  Reviewed by: murf
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/res/ael/pval.c

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

Modified: branches/1.6.0/res/ael/pval.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/res/ael/pval.c?view=diff&rev=158190&r1=158189&r2=158190
==============================================================================
--- branches/1.6.0/res/ael/pval.c (original)
+++ branches/1.6.0/res/ael/pval.c Thu Nov 20 13:42:31 2008
@@ -3837,7 +3837,7 @@
 					switch_null->context = this_context;
 					switch_null->is_switch = 1;
 					switch_empty = new_prio();
-					snprintf(buf1,sizeof(buf1),"sw-%d-.|10",local_control_statement_count);
+					snprintf(buf1,sizeof(buf1),"sw-%d-.,10",local_control_statement_count);
 					switch_empty->app = strdup("Goto");
 					switch_empty->appargs = strdup(buf1);
 					linkprio(switch_null, switch_empty, mother_exten);




More information about the asterisk-commits mailing list