]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
This should at least temporarily fix a problem where the 't' Dial
authorTerry Wilson <twilson@digium.com>
Fri, 18 Jan 2008 17:13:00 +0000 (17:13 +0000)
committerTerry Wilson <twilson@digium.com>
Fri, 18 Jan 2008 17:13:00 +0000 (17:13 +0000)
option is incorrectly passed to the transferee when built-in
attended transfers are used.  There is still a problem with 'T',
but better to fix some problems than no problems while we work
on it.

(closes issue #7904)
Reported by: k-egg
Patches:
      transfer-fix-b14-r97657.diff uploaded by sergee (license 138)
Tested by: sergee, otherwiseguy

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@99032 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_features.c

index 5eaa5b2e3b8e0fb821528172cae5af5eef727edb..0fdfbb0364341b83603b2ca3d71372b415a623e3 100644 (file)
@@ -882,8 +882,8 @@ static int builtin_atxfer(struct ast_channel *chan, struct ast_channel *peer, st
                ast_hangup(newchan);
                return -1;
        }
-       tobj->chan = xferchan;
-       tobj->peer = newchan;
+       tobj->chan = newchan;
+       tobj->peer = xferchan;
        tobj->bconfig = *config;
 
        if (ast_stream_and_wait(newchan, xfersound, newchan->language, ""))