From 2a666f21b4f8ed182bc1bb35d0c69b9a414fcd97 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 13 Jun 2008 14:15:56 +0000 Subject: [PATCH] Merged revisions 122557 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r122557 | tilghman | 2008-06-13 09:15:07 -0500 (Fri, 13 Jun 2008) | 7 lines 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: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@122558 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/dial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/dial.c b/main/dial.c index ae6ea55fc3..0bbe71e3bd 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); }