dect
/
asterisk
Archived
13
0
Fork 0

Correct the argument separator for a Dial statement in pbx_dundi.

Closes issue #10483, patch by lunn


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@79888 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
qwell 2007-08-17 15:27:19 +00:00
parent 6f32281724
commit 3914b3b356
1 changed files with 1 additions and 1 deletions

View File

@ -4530,7 +4530,7 @@ static int dundi_exec(struct ast_channel *chan, const char *context, const char
if (x < res) {
/* Got a hit! */
dundiargs = pbx_builtin_getvar_helper(chan, "DUNDIDIALARGS");
snprintf(req, sizeof(req), "%s/%s||%s", results[x].tech, results[x].dest,
snprintf(req, sizeof(req), "%s/%s,,%s", results[x].tech, results[x].dest,
S_OR(dundiargs, ""));
dial = pbx_findapp("Dial");
if (dial)