From bd279373b2359e31fb1b3e379475de1ba30cd1d1 Mon Sep 17 00:00:00 2001 From: Brett Bryant Date: Fri, 18 Jul 2008 15:39:32 +0000 Subject: [PATCH] Merged revisions 131916 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r131916 | bbryant | 2008-07-18 10:38:22 -0500 (Fri, 18 Jul 2008) | 12 lines Merged revisions 131915 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r131915 | bbryant | 2008-07-18 10:34:42 -0500 (Fri, 18 Jul 2008) | 4 lines 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.6.0@131917 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/features.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/features.c b/main/features.c index 9b1fe278b3..c6e741cca3 100644 --- a/main/features.c +++ b/main/features.c @@ -936,8 +936,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();