[Asterisk-cvs] asterisk channel.c,1.109,1.110
markster at lists.digium.com
markster at lists.digium.com
Sun May 16 13:38:37 CDT 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv4188
Modified Files:
channel.c
Log Message:
Ignore progress frames in request/dial (bug #1657)
Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -d -r1.109 -r1.110
--- channel.c 15 May 2004 22:53:55 -0000 1.109
+++ channel.c 16 May 2004 17:50:14 -0000 1.110
@@ -1685,6 +1685,8 @@
state = f->subclass;
ast_frfree(f);
break;
+ } else if (f->subclass == AST_CONTROL_PROGRESS) {
+ /* Ignore */
} else if (f->subclass == -1) {
/* Ignore -- just stopping indications */
} else {
More information about the svn-commits
mailing list