From: James Golovich Date: Fri, 26 Mar 2004 07:18:26 +0000 (+0000) Subject: Make chan_vpb.c detect austel busy (bug 545) X-Git-Tag: 1.0.0-rc1~840 X-Git-Url: http://git.asterisk.org/gitweb/?p=asterisk%2Fasterisk.git;a=commitdiff_plain;h=a222dbe8c7e74c3cd8a517c1c7015fc541c1d524;hp=2ff5d7de53bae840fe538b6c0e0dd767a0b997fd Make chan_vpb.c detect austel busy (bug 545) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2567 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_vpb.c b/channels/chan_vpb.c index 53a1b0f..085320e 100755 --- a/channels/chan_vpb.c +++ b/channels/chan_vpb.c @@ -270,7 +270,7 @@ static inline int monitor_handle_owned(struct vpb_pvt *p, VPB_EVENT *e) break; case VPB_TONEDETECT: - if (e->data == VPB_BUSY || e->data == VPB_BUSY_308) + if (e->data == VPB_BUSY || e->data == VPB_BUSY_308 || e->data == VPB_BUSY_AUST) f.subclass = AST_CONTROL_BUSY; else if (e->data == VPB_GRUNT) { p->lastgrunt = tcounter;