提交 cbe6f74f authored 作者: Giovanni Maruzzelli's avatar Giovanni Maruzzelli

FS-6285 skypopen: ANY, RR NOT work fine in mod_skypopen

上级 7dbab7b1
...@@ -1365,9 +1365,9 @@ static switch_call_cause_t channel_outgoing_channel(switch_core_session_t *sessi ...@@ -1365,9 +1365,9 @@ static switch_call_cause_t channel_outgoing_channel(switch_core_session_t *sessi
char name[128]; char name[128];
if (strncmp("ANY", outbound_profile->destination_number, 3) == 0) { if (strncmp("ANY", outbound_profile->destination_number, 3) == 0) {
snprintf(name, sizeof(name), "skypopen/ANY/%s%s", tech_pvt->name, outbound_profile->destination_number + 3); snprintf(name, sizeof(name), "skypopen/%s%s", tech_pvt->name, outbound_profile->destination_number + 3);
} else if (strncmp("RR", outbound_profile->destination_number, 2) == 0) { } else if (strncmp("RR", outbound_profile->destination_number, 2) == 0) {
snprintf(name, sizeof(name), "skypopen/RR/%s%s", tech_pvt->name, outbound_profile->destination_number + 2); snprintf(name, sizeof(name), "skypopen/%s%s", tech_pvt->name, outbound_profile->destination_number + 2);
} else { } else {
snprintf(name, sizeof(name), "skypopen/%s", outbound_profile->destination_number); snprintf(name, sizeof(name), "skypopen/%s", outbound_profile->destination_number);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论