[asterisk-commits] file: branch 1.2 r41690 - /branches/1.2/channel.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Sep 1 09:28:08 MST 2006
Author: file
Date: Fri Sep 1 11:28:08 2006
New Revision: 41690
URL: http://svn.digium.com/view/asterisk?rev=41690&view=rev
Log:
Don't treat an unexpected control subclass as voice (issue #7858 reported by PCadach)
Modified:
branches/1.2/channel.c
Modified: branches/1.2/channel.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/channel.c?rev=41690&r1=41689&r2=41690&view=diff
==============================================================================
--- branches/1.2/channel.c (original)
+++ branches/1.2/channel.c Fri Sep 1 11:28:08 2006
@@ -1780,6 +1780,7 @@
break;
default:
ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", f->subclass);
+ break;
}
case AST_FRAME_VOICE:
/* Write audio if appropriate */
More information about the asterisk-commits
mailing list