dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 256009 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r256009 | russell | 2010-04-02 18:30:15 -0500 (Fri, 02 Apr 2010) | 2 lines
  
  Remove extremely verbose debug message.
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@256010 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2010-04-02 23:30:58 +00:00
parent 296f7c46ea
commit 9fd7fd6fef
1 changed files with 1 additions and 3 deletions

View File

@ -3570,9 +3570,7 @@ done:
int ast_internal_timing_enabled(struct ast_channel *chan)
{
int ret = ast_opt_internal_timing && chan->timingfd > -1;
ast_debug(5, "Internal timing is %s (option_internal_timing=%d chan->timingfd=%d)\n", ret? "enabled": "disabled", ast_opt_internal_timing, chan->timingfd);
return ret;
return (ast_opt_internal_timing && chan->timingfd > -1);
}
struct ast_frame *ast_read(struct ast_channel *chan)