From be22da9f894210e41a79733e4e45d76aff56bb34 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Mon, 26 Sep 2005 23:30:24 +0000 Subject: _really_ fix the zaptel hang problem git-svn-id: http://svn.digium.com/svn/zaptel/trunk@779 5390a7c7-147a-4af0-8ec9-7488f05a26cb --- zaptel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zaptel.c b/zaptel.c index 2161869..c3096b1 100755 --- a/zaptel.c +++ b/zaptel.c @@ -4975,10 +4975,11 @@ out in the later versions, and is put back now. */ so stupid switches won't consider the channel active */ if (ms->flags & ZT_FLAG_AUDIO) { - memset(txb, ms->xlaw == __zt_alaw ? 0x55 : 0xFF, bytes); + memset(txb, ZT_LIN2X(0, ms), bytes); } else { memset(txb, 0xFF, bytes); } + bytes = 0; } else { memset(txb, ZT_LIN2X(0, ms), bytes); /* Lastly we use silence on telephony channels */ bytes = 0; -- cgit v1.2.3