aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_usbradio.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-31 22:16:34 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-31 22:16:34 +0000
commit37bb62265e040644a73bf6663cfc92105e29ccd9 (patch)
treea13048606fa4e985aef159d69b0fd5b9ce821612 /channels/chan_usbradio.c
parent8937d9be4abe2f33414874b57c13118fbcfc1e25 (diff)
I missed a place when this define was changed.
(closes issue #12334) Reported by: ovi Patches: 12334-asterisk.patch uploaded by dimas (license 88) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@112071 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_usbradio.c')
-rw-r--r--channels/chan_usbradio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_usbradio.c b/channels/chan_usbradio.c
index 84a2ce2bb..f7c05a670 100644
--- a/channels/chan_usbradio.c
+++ b/channels/chan_usbradio.c
@@ -2282,7 +2282,7 @@ static struct chan_usbradio_pvt *store_config(struct ast_config *cfg, char *ctg)
o->lastopen = ast_tvnow(); /* don't leave it 0 or tvdiff may wrap */
o->dsp = ast_dsp_new();
if (o->dsp) {
- ast_dsp_set_features(o->dsp, DSP_FEATURE_DTMF_DETECT);
+ ast_dsp_set_features(o->dsp, DSP_FEATURE_DIGIT_DETECT);
ast_dsp_set_digitmode(o->dsp, DSP_DIGITMODE_DTMF | DSP_DIGITMODE_MUTECONF | DSP_DIGITMODE_RELAXDTMF);
}