summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-09-14 00:43:11 +0000
committerMark Spencer <markster@digium.com>2005-09-14 00:43:11 +0000
commit5600956db8f443b6ac47204ad67d61628cc10d20 (patch)
tree3446ea0fe711d74e493f7a435a8c0ac51e1bc95f /channels/chan_sip.c
parentf16f81db05bfaefc6ee249951f23fc1a334e9228 (diff)
Handle dialog updates to to tag properly (bug #5166)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6576 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_sip.c')
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 871133f17..0afcaf3eb 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -9236,7 +9236,7 @@ static void handle_response(struct sip_pvt *p, int resp, char *rest, struct sip_
__sip_ack(p, seqno, 0, sipmethod);
/* Get their tag if we haven't already */
- if (ast_strlen_zero(p->theirtag)) {
+ if (ast_strlen_zero(p->theirtag) || (resp >= 200)) {
to = get_header(req, "To");
to = strcasestr(to, "tag=");
if (to) {