[asterisk-commits] rmudgett: trunk r369166 - /trunk/channels/chan_misdn.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Jun 20 16:32:44 CDT 2012


Author: rmudgett
Date: Wed Jun 20 16:32:40 2012
New Revision: 369166

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=369166
Log:
Fix chan_misdn compile error.

Modified:
    trunk/channels/chan_misdn.c

Modified: trunk/channels/chan_misdn.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_misdn.c?view=diff&rev=369166&r1=369165&r2=369166
==============================================================================
--- trunk/channels/chan_misdn.c (original)
+++ trunk/channels/chan_misdn.c Wed Jun 20 16:32:40 2012
@@ -7583,7 +7583,7 @@
 		}
 		f = ast_read(who);
 
-		if (!f || (f->frametype == AST_FRAME_CONTROL && f->subtype.integer != AST_CONTROL_PVT_CAUSE_CODE)) {
+		if (!f || (f->frametype == AST_FRAME_CONTROL && f->subclass.integer != AST_CONTROL_PVT_CAUSE_CODE)) {
 			/* got hangup .. */
 
 			if (!f) {




More information about the asterisk-commits mailing list