aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbkramer <bkramer@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-30 20:55:23 +0000
committerbkramer <bkramer@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-30 20:55:23 +0000
commitc17d546cfdf870c302fef68f35bc6a0aa1035132 (patch)
tree5f5e836e359c3635ae5a13164f89a0ec907c0ba5
parent98d891c53e21627e522f327e3c3d17acd64e1a67 (diff)
/ fixed bug w/regards to playing dtmf's on native bridges
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4359 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xchannels/chan_vpb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_vpb.c b/channels/chan_vpb.c
index c52afdace..1cb4191dc 100755
--- a/channels/chan_vpb.c
+++ b/channels/chan_vpb.c
@@ -2003,7 +2003,7 @@ static void *do_chanreads(void *pvt)
// This DTMF is played by asterisk and leads to an annoying trailing beep on CISCO phones
if( !ignore_dtmf)
vpb_set_event_mask(p->handle, VPB_EVENTS_NODTMF );
- if (strcmp(p->owner->type,"vpb")){
+ if (strcmp(p->owner->type,"vpb")==0){
vpb_dial_sync(p->handle,p->play_dtmf);
if(option_verbose>1)
ast_verbose( VERBOSE_PREFIX_2 "%s: chanreads: Played DTMF %s\n",p->dev,p->play_dtmf);