projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8908a3
)
don't use tone generation for DTMF if the channel driver only supports begin/end...
author
Kevin P. Fleming
<kpfleming@digium.com>
Sun, 29 Jan 2006 05:29:29 +0000
(
05:29
+0000)
committer
Kevin P. Fleming
<kpfleming@digium.com>
Sun, 29 Jan 2006 05:29:29 +0000
(
05:29
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8852
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channel.c
patch
|
blob
|
history
diff --git
a/channel.c
b/channel.c
index
c961f57
..
501baa8
100644
(file)
--- a/
channel.c
+++ b/
channel.c
@@
-2184,7
+2184,8
@@
static int do_senddigit(struct ast_channel *chan, char digit)
if (chan->tech->send_digit)
res = chan->tech->send_digit(chan, digit);
- if (!chan->tech->send_digit || res) {
+ if (!(chan->tech->send_digit && chan->tech->send_digit_begin) ||
+ res) {
/*
* Device does not support DTMF tones, lets fake
* it by doing our own generation. (PM2002)