[asterisk-commits] russell: branch 1.2 r52954 - /branches/1.2/channel.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Jan 30 12:41:53 MST 2007


Author: russell
Date: Tue Jan 30 13:41:52 2007
New Revision: 52954

URL: http://svn.digium.com/view/asterisk?view=rev&rev=52954
Log:
Don't print a message indicating that we don't know what to do with a proceeding
control frame in ast_request_and_dial().  We just need to ignore it.
(reported by JerJer on #asterisk-dev)

Modified:
    branches/1.2/channel.c

Modified: branches/1.2/channel.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/channel.c?view=diff&rev=52954&r1=52953&r2=52954
==============================================================================
--- branches/1.2/channel.c (original)
+++ branches/1.2/channel.c Tue Jan 30 13:41:52 2007
@@ -2476,7 +2476,7 @@
 						state = f->subclass;
 						ast_frfree(f);
 						break;
-					} else if (f->subclass == AST_CONTROL_PROGRESS) {
+					} else if (f->subclass == AST_CONTROL_PROGRESS || f->subclass == AST_CONTROL_PROCEEDING) {
 						/* Ignore */
 					} else if (f->subclass == -1) {
 						/* Ignore -- just stopping indications */



More information about the asterisk-commits mailing list