From: Ben Kramer Date: Thu, 3 Nov 2005 21:49:20 +0000 (+0000) Subject: i/ got the loop drop the wrong way around X-Git-Tag: 1.2.0-rc1~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e2507a07aae5621cb4994ac21434924e2bb4f48;p=thirdparty%2Fasterisk.git i/ got the loop drop the wrong way around git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6957 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_vpb.c b/channels/chan_vpb.c index 7ee4dbda4d..7c1b1c468e 100755 --- a/channels/chan_vpb.c +++ b/channels/chan_vpb.c @@ -2046,9 +2046,9 @@ static int vpb_hangup(struct ast_channel *ast) stoptone(p->handle); } #ifdef VPB_PRI - vpb_setloop_async(p->handle, VPB_ONHOOK); - vpb_sleep(500); vpb_setloop_async(p->handle, VPB_OFFHOOK); + vpb_sleep(100); + vpb_setloop_async(p->handle, VPB_ONHOOK); #endif } else { stoptone(p->handle); /* Terminates any dialing */