[asterisk-commits] oej: trunk r42826 - /trunk/channels/chan_sip.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Sep 12 07:17:33 MST 2006


Author: oej
Date: Tue Sep 12 09:17:33 2006
New Revision: 42826

URL: http://svn.digium.com/view/asterisk?rev=42826&view=rev
Log:
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:
    trunk/channels/chan_sip.c

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=42826&r1=42825&r2=42826&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Sep 12 09:17:33 2006
@@ -13080,7 +13080,7 @@
 			break;
 		}
 	} else {
-		if (p && !ast_test_flag(&p->flags[0], SIP_NEEDDESTROY)) {
+		if (p && p->autokillid > -1) {
 			const char *msg;
 
 			if (!p->jointcapability)



More information about the asterisk-commits mailing list