[asterisk-commits] pcadach: trunk r44079 - in /trunk: ./ channels/chan_sip.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sat Sep 30 09:15:54 MST 2006


Author: pcadach
Date: Sat Sep 30 11:15:53 2006
New Revision: 44079

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

........

Modified:
    trunk/   (props changed)
    trunk/channels/chan_sip.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=44079&r1=44078&r2=44079&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Sat Sep 30 11:15:53 2006
@@ -13150,7 +13150,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