summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-10-19 03:17:26 +0000
committerMark Spencer <markster@digium.com>2004-10-19 03:17:26 +0000
commit17e80052e5b497d79cbdc98e819c7e1f6ba8712b (patch)
treed76667700e4e38dbdc992a219cf99be0311361c9 /channels
parent06dfca5d2489926e03c66c4bf0d5249527ae7d4e (diff)
Don't "ignore" on CANCEL (bug #2670)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4034 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-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 5e37ce4ce..1a7f04bee 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -7045,7 +7045,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
if (p->icseq && (p->icseq > seqno)) {
ast_log(LOG_DEBUG, "Ignoring too old packet packet %d (expecting >= %d)\n", seqno, p->icseq);
return -1;
- } else if (p->icseq && (p->icseq == seqno)) {
+ } else if (p->icseq && (p->icseq == seqno) && (strcasecmp(cmd, "CANCEL") || p->alreadygone)) {
/* ignore means "don't do anything with it" but still have to
respond appropriately. We do this if we receive a repeat of
the last sequence number */