[Asterisk-cvs] asterisk/channels chan_sip.c,1.564,1.565
markster at lists.digium.com
markster at lists.digium.com
Sun Nov 14 17:32:45 CST 2004
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv4238/channels
Modified Files:
chan_sip.c
Log Message:
Fix bizarre construct
Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.564
retrieving revision 1.565
diff -u -d -r1.564 -r1.565
--- chan_sip.c 14 Nov 2004 15:13:13 -0000 1.564
+++ chan_sip.c 14 Nov 2004 22:33:32 -0000 1.565
@@ -1904,7 +1904,7 @@
/* Send 180 ringing if out-of-band seems reasonable */
transmit_response(p, "180 Ringing", &p->initreq);
p->ringing = 1;
- if (!p->progressinband > 1)
+ if (p->progressinband > 1)
break;
} else {
/* Well, if it's not reasonable, just send in-band */
More information about the svn-commits
mailing list