summaryrefslogtreecommitdiffstats
path: root/chan_lcr.c
diff options
context:
space:
mode:
authorSuper User2008-06-15 14:29:09 +0200
committerSuper User2008-06-15 14:29:09 +0200
commit609582c9ae75f3cd53df8d3b3ff3c303ad5d3d91 (patch)
tree94b3172dc896147c36bb4f7e52f61758933e035b /chan_lcr.c
parentchan_lcr: in lcr_in_information: information.id already contains the (diff)
downloadlcr-609582c9ae75f3cd53df8d3b3ff3c303ad5d3d91.tar.gz
lcr-609582c9ae75f3cd53df8d3b3ff3c303ad5d3d91.tar.xz
lcr-609582c9ae75f3cd53df8d3b3ff3c303ad5d3d91.zip
fixed dialing bug to remote application
modified: action.cpp modified: apppbx.cpp modified: chan_lcr.c modified: mISDN.cpp
Diffstat (limited to 'chan_lcr.c')
-rw-r--r--chan_lcr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chan_lcr.c b/chan_lcr.c
index 25043ed..3e89585 100644
--- a/chan_lcr.c
+++ b/chan_lcr.c
@@ -958,7 +958,7 @@ static void lcr_in_information(struct chan_call *call, int message_type, union p
if (!call->pbx_started)
{
CDEBUG(call, call->ast, "Asterisk not started, adding digits to number.\n");
- strncpy(ast->exten, param->information.id, AST_MAX_EXTENSION-1);
+ strncat(ast->exten, param->information.id, AST_MAX_EXTENSION-1);
lcr_start_pbx(call, ast, param->information.sending_complete);
return;
}