aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-21 18:27:56 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-21 18:27:56 +0000
commit98772b5c5dc2200ffb91aa5001fa4a4541179dbc (patch)
tree8d02755401f406ff9911b8af1a29ea16c391037d
parente520c2bf27474bdd63a868055a80246222fcca41 (diff)
Update app_queue to use commas as application argument separators.
(closes issue #10793, snar) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@83483 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index ce6f54e66..bcf335075 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2907,9 +2907,9 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
if (mixmonapp) {
if (!ast_strlen_zero(monitor_exec))
- snprintf(mixmonargs, sizeof(mixmonargs)-1, "%s|b%s|%s", tmpid2, monitor_options, monitor_exec);
+ snprintf(mixmonargs, sizeof(mixmonargs)-1, "%s,b%s,%s", tmpid2, monitor_options, monitor_exec);
else
- snprintf(mixmonargs, sizeof(mixmonargs)-1, "%s|b%s", tmpid2, monitor_options);
+ snprintf(mixmonargs, sizeof(mixmonargs)-1, "%s,b%s", tmpid2, monitor_options);
ast_debug(1, "Arguments being passed to MixMonitor: %s\n", mixmonargs);
/* We purposely lock the CDR so that pbx_exec does not update the application data */