aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-02 21:50:03 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-02 21:50:03 +0000
commit2cd0bb0222342a90b608aeec64d2fdbeb4ca25b8 (patch)
tree1c4bbf2e409f798a639030fd050bd45f09c27460 /apps/app_dial.c
parent6e7e7bf96cb60b432e9d4808d8622a6de73f0381 (diff)
uhh... oops
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6947 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 94e659519..50b2761c0 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -701,7 +701,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
{
int res=-1;
struct localuser *u;
- char *peers, *tech, *number, *rest, *cur;
+ char *tech, *number, *rest, *cur;
char privcid[256];
char privintro[1024];
struct localuser *outgoing=NULL, *tmp;
@@ -940,7 +940,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
/* If a channel group has been specified, get it for use when we create peer channels */
outbound_group = pbx_builtin_getvar_helper(chan, "OUTBOUND_GROUP");
- cur = peers;
+ cur = args.peers;
do {
/* Remember where to start next time */
rest = strchr(cur, '&');