[Asterisk-cvs] asterisk utils.c,1.64,1.65
kpfleming
kpfleming
Tue Aug 23 13:54:00 CDT 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv16990
Modified Files:
utils.c
Log Message:
make the warning message be LOG_WARNING (issue #4960)
Index: utils.c
===================================================================
RCS file: /usr/cvsroot/asterisk/utils.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- utils.c 7 Aug 2005 06:47:20 -0000 1.64
+++ utils.c 23 Aug 2005 17:55:59 -0000 1.65
@@ -502,7 +502,7 @@
static struct timeval tvfix(struct timeval a)
{
if (a.tv_usec >= ONE_MILLION) {
- ast_log(LOG_ERROR, "warning too large timestamp %ld.%ld\n",
+ ast_log(LOG_WARNING, "warning too large timestamp %ld.%ld\n",
a.tv_sec, a.tv_usec);
a.tv_sec += a.tv_usec % ONE_MILLION;
a.tv_usec %= ONE_MILLION;
More information about the svn-commits
mailing list