summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Cadach <paul@odt.east.telecom.kz>2006-09-30 16:15:53 +0000
committerPaul Cadach <paul@odt.east.telecom.kz>2006-09-30 16:15:53 +0000
commitd2087e6a097a53b1c815194a09ebf4d2ce51bc27 (patch)
treea28ada1417f7e83e5ff4526325118d1f615839e6
parent031cd452d97c7c999d3a4c91357d90789976bc88 (diff)
Merged revisions 44078 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r44078 | pcadach | 2006-09-30 22:12:23 +0600 (Сбт, 30 Сен 2006) | 6 lines Fix issue #7928 correctly. Next is a comment of previous fix: Issue #7928 - Don't send both 404 and 503. Fix by phsultan with a small fix by me, myself or I. Thanks, Philippe! (This was caused by my changes to the transaction handling) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44079 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-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 ec45fc024..43d36e4f2 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -13150,7 +13150,7 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int
break;
}
} else {
- if (p && p->autokillid > -1) {
+ if (p && (p->autokillid == -1)) {
const char *msg;
if (!p->jointcapability)