aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-15 22:53:55 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-15 22:53:55 +0000
commit8a7de41d484a33c339d9497d0ec6dce2accdc6cc (patch)
tree84fd125c1fddd5a9131c8d66d0aec2579452b928 /channel.c
parent349ca058eeedd5ac73b991a88bbc90e7faefaabd (diff)
Don't worry about tones we can't send (bug #1652)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2973 f38db490-d61c-443f-a65b-d21fe96a405b
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;