[asterisk-commits] tilghman: branch 1.6.0 r122558 - in	/branches/1.6.0: ./ main/dial.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri Jun 13 09:15:57 CDT 2008
    
    
  
Author: tilghman
Date: Fri Jun 13 09:15:56 2008
New Revision: 122558
URL: http://svn.digium.com/view/asterisk?view=rev&rev=122558
Log:
Merged revisions 122557 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk
........
r122557 | tilghman | 2008-06-13 09:15:07 -0500 (Fri, 13 Jun 2008) | 7 lines
Convert one more delimiter to use comma.
(closes issue #12850)
 Reported by: bcnit
 Patches: 
       20080613__bug12850.diff.txt uploaded by Corydon76 (license 14)
 Tested by: bcnit
........
Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/main/dial.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/dial.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/main/dial.c?view=diff&rev=122558&r1=122557&r2=122558
==============================================================================
--- branches/1.6.0/main/dial.c (original)
+++ branches/1.6.0/main/dial.c Fri Jun 13 09:15:56 2008
@@ -91,7 +91,7 @@
 		return NULL;
 	
 	/* Parse out application and arguments */
-	if ((args = strchr(app, '|'))) {
+	if ((args = strchr(app, ','))) {
 		*args++ = '\0';
 		answer_exec->args = ast_strdup(args);
 	}
    
    
More information about the asterisk-commits
mailing list