]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 56230 via svnmerge from
authorJoshua Colp <jcolp@digium.com>
Thu, 22 Feb 2007 18:49:39 +0000 (18:49 +0000)
committerJoshua Colp <jcolp@digium.com>
Thu, 22 Feb 2007 18:49:39 +0000 (18:49 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r56230 | file | 2007-02-22 13:44:24 -0500 (Thu, 22 Feb 2007) | 2 lines

Only change the original or clone channel if it's the channel behind the proxy channel, not if it's just a regular bridged channel.

........

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

channels/chan_sip.c
main/channel.c

index 2e89a91993867709a85f741f6c20e01c17de2bad..c99c330da661d79801a73571406d97615922de4f 100644 (file)
@@ -12728,7 +12728,7 @@ static int attempt_transfer(struct sip_dual *transferer, struct sip_dual *target
                        ast_log(LOG_DEBUG, "-- No target second channel ---\n");
                ast_log(LOG_DEBUG, "-- END Sip transfer:--------------------\n");
        }
-       if (transferer->chan2 && (ast_bridged_channel(transferer->chan2) == transferer->chan2->_bridge)) { /* We have a bridge on the transferer's channel */
+       if (transferer->chan2) { /* We have a bridge on the transferer's channel */
                peera = transferer->chan1;      /* Transferer - PBX -> transferee channel * the one we hangup */
                peerb = target->chan1;          /* Transferer - PBX -> target channel - This will get lost in masq */
                peerc = transferer->chan2;      /* Asterisk to Transferee */
index 2b40c10272d775d2c29c2295a99b79e21f255e44..da8f22a6a01f7a9efcd5af8089bb113a14338fec 100644 (file)
@@ -3200,10 +3200,10 @@ int ast_channel_masquerade(struct ast_channel *original, struct ast_channel *clo
 
        /* each of these channels may be sitting behind a channel proxy (i.e. chan_agent)
           and if so, we don't really want to masquerade it, but its proxy */
-       if (original->_bridge && (original->_bridge != ast_bridged_channel(original)))
+       if (original->_bridge && (original->_bridge != ast_bridged_channel(original)) && (original->_bridge->_bridge != original))
                final_orig = original->_bridge;
 
-       if (clone->_bridge && (clone->_bridge != ast_bridged_channel(clone)))
+       if (clone->_bridge && (clone->_bridge != ast_bridged_channel(clone)) && (clone->_bridge->_bridge != clone))
                final_clone = clone->_bridge;
 
        if ((final_orig != original) || (final_clone != clone)) {