From: Joshua Colp Date: Tue, 11 Mar 2008 19:20:01 +0000 (+0000) Subject: Make sure the visible indication is on the right channel so when the masquerade happe... X-Git-Tag: 1.4.19-rc3~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f65ef826436422f3e6da877e15c4dc258560eca;p=thirdparty%2Fasterisk.git Make sure the visible indication is on the right channel so when the masquerade happens the proper indication is enacted. (closes issue #11707) Reported by: iam git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@107646 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_features.c b/res/res_features.c index f1261b29cd..e21269640c 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -869,6 +869,7 @@ static int builtin_atxfer(struct ast_channel *chan, struct ast_channel *peer, st return -1; } /* Make formats okay */ + xferchan->visible_indication = transferer->visible_indication; xferchan->readformat = transferee->readformat; xferchan->writeformat = transferee->writeformat; ast_channel_masquerade(xferchan, transferee);