[svn-commits] mnicholson: trunk r277262 - /trunk/main/channel.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jul 16 13:05:05 CDT 2010


Author: mnicholson
Date: Fri Jul 16 13:05:01 2010
New Revision: 277262

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=277262
Log:
Print f->subclass.integer instead of f->subclass.

(fix build breakage introduced in r277250)

Modified:
    trunk/main/channel.c

Modified: trunk/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/channel.c?view=diff&rev=277262&r1=277261&r2=277262
==============================================================================
--- trunk/main/channel.c (original)
+++ trunk/main/channel.c Fri Jul 16 13:05:01 2010
@@ -3860,7 +3860,7 @@
 					 */
 					if (ast_tvdiff_ms(now, chan->dtmf_tv) < AST_MIN_DTMF_DURATION) {
 						f->len = ast_tvdiff_ms(now, chan->dtmf_tv);
-						ast_log(LOG_DTMF, "DTMF end '%c' detected to have actual duration %ld on the wire, emulation will be triggered on %s\n", f->subclass, f->len, chan->name);
+						ast_log(LOG_DTMF, "DTMF end '%c' detected to have actual duration %ld on the wire, emulation will be triggered on %s\n", f->subclass.integer, f->len, chan->name);
 					}
 				} else if (!f->len) {
 					ast_log(LOG_DTMF, "DTMF end accepted without begin '%c' on %s\n", f->subclass.integer, chan->name);




More information about the svn-commits mailing list