[svn-commits] ctooley: trunk r123115 - /trunk/apps/app_externalivr.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jun 16 15:02:06 CDT 2008


Author: ctooley
Date: Mon Jun 16 15:02:06 2008
New Revision: 123115

URL: http://svn.digium.com/view/asterisk?view=rev&rev=123115
Log:
Changes response to the ExternalIVR() P command from pipe delimited to comma delimited.  closes issue #12804

Modified:
    trunk/apps/app_externalivr.c

Modified: trunk/apps/app_externalivr.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_externalivr.c?view=diff&rev=123115&r1=123114&r2=123115
==============================================================================
--- trunk/apps/app_externalivr.c (original)
+++ trunk/apps/app_externalivr.c Mon Jun 16 15:02:06 2008
@@ -373,7 +373,7 @@
 		/* Put the application + the arguments in a | delimited list */
 		ast_str_reset(pipe_delim_args);
 		for (j = 0; application_args.cmd[j] != NULL; j++) {
-			ast_str_append(&pipe_delim_args, 0, "%s%s", j == 0 ? "" : "|", application_args.cmd[j]);
+			ast_str_append(&pipe_delim_args, 0, "%s%s", j == 0 ? "" : ",", application_args.cmd[j]);
 		}
 
 		/* Parse the ExternalIVR() arguments */




More information about the svn-commits mailing list