aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-11 19:23:28 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-11 19:23:28 +0000
commit0d41e1f3e58ec3dbae847a1e1f0dc7a8bf6eeff7 (patch)
tree152168d8f0cad154bf59babb1c60d9c8ff480ace /main
parent82da51173aa388f408a3e25a24cec1eec36e6cf3 (diff)
Merged revisions 107646 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r107646 | file | 2008-03-11 16:20:01 -0300 (Tue, 11 Mar 2008) | 4 lines 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: http://svn.digium.com/svn/asterisk/trunk@107659 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/features.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/features.c b/main/features.c
index b4e281731..1b6fda4b2 100644
--- a/main/features.c
+++ b/main/features.c
@@ -1113,6 +1113,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);
@@ -1209,6 +1210,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);