mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Changes response to the ExternalIVR() P command from pipe delimited to comma delimited. closes issue #12804
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@123115 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -373,7 +373,7 @@ static int app_exec(struct ast_channel *chan, void *data)
|
||||
/* 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 */
|
||||
|
Reference in New Issue
Block a user