From 0954d11aca25b25966aa68b22baa670a11ba277d Mon Sep 17 00:00:00 2001 From: Birger Harzenetter Date: Tue, 21 Aug 2012 08:44:34 +0200 Subject: [PATCH] Fix: Append information (overlap dialing) to Asterisk's extension string Signed-off-by: Andreas Eversberg --- chan_lcr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chan_lcr.c b/chan_lcr.c index 735e4e7..dcc9b41 100644 --- a/chan_lcr.c +++ b/chan_lcr.c @@ -1412,7 +1412,9 @@ static void lcr_in_information(struct chan_call *call, int message_type, union p #if ASTERISK_VERSION_NUM < 110000 strncat(ast->exten, param->information.id, AST_MAX_EXTENSION-1); #else - ast_channel_exten_set(ast, param->information.id); + char *tmp[AST_MAX_EXTENSION]; + snprintf(tmp,AST_MAX_EXTENSION,"%s%s",ast_channel_exten(ast),param->information.id); + ast_channel_exten_set(ast, tmp); #endif lcr_start_pbx(call, ast, param->information.sending_complete); return; -- 2.13.6