mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Fix a bug in blind transfers where the BLINDTRANSFER variable isn't always set to the other end of the blind transfer.
(closes issue #12586) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@131915 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -735,8 +735,8 @@ static int builtin_blindtransfer(struct ast_channel *chan, struct ast_channel *p
|
||||
}
|
||||
/*! \todo XXX Maybe we should have another message here instead of invalid extension XXX */
|
||||
} else if (ast_exists_extension(transferee, transferer_real_context, xferto, 1, transferer->cid.cid_num)) {
|
||||
pbx_builtin_setvar_helper(peer, "BLINDTRANSFER", transferee->name);
|
||||
pbx_builtin_setvar_helper(chan, "BLINDTRANSFER", peer->name);
|
||||
pbx_builtin_setvar_helper(transferer, "BLINDTRANSFER", transferee->name);
|
||||
pbx_builtin_setvar_helper(transferee, "BLINDTRANSFER", transferer->name);
|
||||
res=finishup(transferee);
|
||||
if (!transferer->cdr) {
|
||||
transferer->cdr=ast_cdr_alloc();
|
||||
|
Reference in New Issue
Block a user