MODAPP-276
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13300 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
c5934bbcb0
commit
bfea650d72
|
@ -44,7 +44,6 @@
|
|||
|
||||
typedef struct easyroute_results{
|
||||
char limit[16];
|
||||
char destnum[16];
|
||||
char dialstring[256];
|
||||
char group[16];
|
||||
char acctcode[17];
|
||||
|
@ -323,7 +322,7 @@ SWITCH_STANDARD_APP(easyroute_app_function)
|
|||
}
|
||||
route_lookup(destnum, &results, noat, seperator);
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "EASY ROUTE DEST: [%s]\n", results.dialstring);
|
||||
switch_channel_set_variable(channel, "easy_destnum", results.destnum);
|
||||
switch_channel_set_variable(channel, "easy_destnum", destnum);
|
||||
switch_channel_set_variable(channel, "easy_dialstring", results.dialstring);
|
||||
switch_channel_set_variable(channel, "easy_group", results.group);
|
||||
switch_channel_set_variable(channel, "easy_limit", results.limit);
|
||||
|
|
Loading…
Reference in New Issue