[svn-commits] tilghman: trunk r122557 - /trunk/main/dial.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 13 09:15:08 CDT 2008


Author: tilghman
Date: Fri Jun 13 09:15:07 2008
New Revision: 122557

URL: http://svn.digium.com/view/asterisk?view=rev&rev=122557
Log:
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:
    trunk/main/dial.c

Modified: trunk/main/dial.c
URL: http://svn.digium.com/view/asterisk/trunk/main/dial.c?view=diff&rev=122557&r1=122556&r2=122557
==============================================================================
--- trunk/main/dial.c (original)
+++ trunk/main/dial.c Fri Jun 13 09:15:07 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 svn-commits mailing list