summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-05-15 22:53:55 +0000
committerMark Spencer <markster@digium.com>2004-05-15 22:53:55 +0000
commit2742f2ca72f941a8225c037da4862840a5914b42 (patch)
tree84fd125c1fddd5a9131c8d66d0aec2579452b928 /channel.c
parentf222665d1d989277b1042ecf885d41cf7e1bece9 (diff)
Don't worry about tones we can't send (bug #1652)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2973 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index 9349f035e..e870cfb65 100755
--- a/channel.c
+++ b/channel.c
@@ -1425,8 +1425,7 @@ static int do_senddigit(struct ast_channel *chan, char digit)
ast_playtones_start(chan,0,dtmf_tones[15], 0);
else {
/* not handled */
- ast_log(LOG_WARNING, "Unable to handle DTMF tone '%c' for '%s'\n", digit, chan->name);
- return -1;
+ ast_log(LOG_DEBUG, "Unable to handle DTMF tone '%c' for '%s'\n", digit, chan->name);
}
}
return 0;