[asterisk-commits] pcadach: branch 1.4 r44078 - /branches/1.4/channels/chan_sip.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sat Sep 30 09:12:23 MST 2006


Author: pcadach
Date: Sat Sep 30 11:12:23 2006
New Revision: 44078

URL: http://svn.digium.com/view/asterisk?rev=44078&view=rev
Log:
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)

Modified:
    branches/1.4/channels/chan_sip.c

Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?rev=44078&r1=44077&r2=44078&view=diff
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Sat Sep 30 11:12:23 2006
@@ -13174,7 +13174,7 @@
 			break;
 		}
 	} else {
-		if (p && p->autokillid > -1) {
+		if (p && (p->autokillid == -1)) {
 			const char *msg;
 
 			if (!p->jointcapability)



More information about the asterisk-commits mailing list