From 5600956db8f443b6ac47204ad67d61628cc10d20 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 14 Sep 2005 00:43:11 +0000 Subject: [PATCH] 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 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 871133f172..0afcaf3ebd 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) {