aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_externalivr.c
diff options
context:
space:
mode:
authorctooley <ctooley@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-16 20:02:06 +0000
committerctooley <ctooley@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-16 20:02:06 +0000
commit0b9086d8bbdb25af369dfc899d2617edb6bcf3c3 (patch)
treeedfa565ef432ccfe04cf0ffe17caac55ce2f44f5 /apps/app_externalivr.c
parent8f14f6c4b2c53d754d2bbdf2c1cff56e41ca89b4 (diff)
Changes response to the ExternalIVR() P command from pipe delimited to comma delimited. closes issue #12804
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@123115 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_externalivr.c')
-rw-r--r--apps/app_externalivr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_externalivr.c b/apps/app_externalivr.c
index 7d802579a..460c3cf72 100644
--- a/apps/app_externalivr.c
+++ b/apps/app_externalivr.c
@@ -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 */