Module: kamailio Branch: master Commit: e75837afc7e146d0f43e637d394146c3f1d05eea URL: https://github.com/kamailio/kamailio/commit/e75837afc7e146d0f43e637d394146c3...
Author: Frank Carmickle frank@silentcircle.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2016-05-12T18:03:04+02:00
tm: updated the reason text for canceled branches after one is answered
- change answered elsewhere to call completed elsewhere - "Call completed elsewhere", RFC3326, defines this as the string to send - submited by William King william.king@quentustech.com, GH #610
---
Modified: modules/tm/t_cancel.c
---
Diff: https://github.com/kamailio/kamailio/commit/e75837afc7e146d0f43e637d394146c3... Patch: https://github.com/kamailio/kamailio/commit/e75837afc7e146d0f43e637d394146c3...
---
diff --git a/modules/tm/t_cancel.c b/modules/tm/t_cancel.c index 9db7abe..9702f65 100644 --- a/modules/tm/t_cancel.c +++ b/modules/tm/t_cancel.c @@ -43,7 +43,7 @@ typedef struct cancel_reason_map { } cancel_reason_map_t;
static cancel_reason_map_t _cancel_reason_map[] = { - { 200, str_init("Answered elsewhere") }, + { 200, str_init("Call completed elsewhere") }, { 0, {0, 0} } };