summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-10-09 14:31:27 +0000
committerJoshua Colp <jcolp@digium.com>2007-10-09 14:31:27 +0000
commitd9909a01519bc7734e96aa06dae84b6ed02e0fd1 (patch)
tree99e13bd759bd03af6bbecf82832a6421b06165e2 /channels
parent6f2e7b431066562c0a88f9d39fc567fea863d7fd (diff)
Merged revisions 85093 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r85093 | file | 2007-10-09 11:30:16 -0300 (Tue, 09 Oct 2007) | 4 lines Don't perform a reinvite if a transfer is in progress. (issue #10915) Reported by: ramonpeek ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@85094 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5a99df4f5..5f613ef31 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -18640,7 +18640,7 @@ static int sip_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struc
changed = 1;
}
}
- if (changed && !ast_test_flag(&p->flags[0], SIP_GOTREFER)) {
+ if (changed && !ast_test_flag(&p->flags[0], SIP_GOTREFER) && !ast_test_flag(&p->flags[0], SIP_DEFER_BYE_ON_TRANSFER)) {
if (chan->_state != AST_STATE_UP) { /* We are in early state */
if (p->do_history)
append_history(p, "ExtInv", "Initial invite sent with remote bridge proposal.");