aboutsummaryrefslogtreecommitdiffstats
path: root/main/dial.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-13 14:15:07 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-13 14:15:07 +0000
commit1a26b0f17f1fbacbb7de04eac5d00ed6eba41e84 (patch)
tree684fc05c39bafbac62a751f243045b8d79dcc2fe /main/dial.c
parentfa578d794263958bf887c3037c0ede8a454d101c (diff)
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 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@122557 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/dial.c')
-rw-r--r--main/dial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/dial.c b/main/dial.c
index 377d73b31..199d05c2f 100644
--- a/main/dial.c
+++ b/main/dial.c
@@ -91,7 +91,7 @@ static void *answer_exec_enable(void *data)
return NULL;
/* Parse out application and arguments */
- if ((args = strchr(app, '|'))) {
+ if ((args = strchr(app, ','))) {
*args++ = '\0';
answer_exec->args = ast_strdup(args);
}