summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2010-04-02 23:30:58 +0000
committerRussell Bryant <russell@russellbryant.com>2010-04-02 23:30:58 +0000
commit37797ddd526ded5823d4bbe9b939968129b781ae (patch)
tree7e0ea5175f79ee42f8d3fd02ea0643e78dc99bcd
parent3c6c8796814cfac5e58a0e1d6e0280cc8e36e9b7 (diff)
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: https://origsvn.digium.com/svn/asterisk/trunk@256010 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/channel.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main/channel.c b/main/channel.c
index 892d0306a..d3c9e9dd5 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -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)