[Asterisk-cvs] asterisk/channels chan_iax2.c,1.91.2.14,1.91.2.15
markster at lists.digium.com
markster at lists.digium.com
Tue May 25 11:03:12 CDT 2004
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv20476/channels
Modified Files:
Tag: v1-0_stable
chan_iax2.c
Log Message:
Don't display unknown IE's unless debug is on
Index: chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.91.2.14
retrieving revision 1.91.2.15
diff -u -d -r1.91.2.14 -r1.91.2.15
--- chan_iax2.c 24 May 2004 03:14:37 -0000 1.91.2.14
+++ chan_iax2.c 25 May 2004 15:17:20 -0000 1.91.2.15
@@ -470,7 +470,8 @@
static void iax_debug_output(const char *data)
{
- ast_verbose(data);
+ if (iaxdebug)
+ ast_verbose(data);
}
static void iax_error_output(const char *data)
More information about the svn-commits
mailing list