summaryrefslogtreecommitdiff
path: root/wcte11xp.c
diff options
context:
space:
mode:
authortzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-11-25 20:59:19 +0000
committertzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-11-25 20:59:19 +0000
commit8623c62b7709991b5f7c667e6696d046eb9c9b63 (patch)
treecde317e7e2b29e4f967eac7c53cea7aa8a1b9f3f /wcte11xp.c
parent901f14330c05bd7b5c8856b6ca4503d910b0c5f5 (diff)
Fixing issue #13954 in zaptel 1.2.svn_1.2
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@4587 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wcte11xp.c')
-rw-r--r--wcte11xp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wcte11xp.c b/wcte11xp.c
index 016f205..d79b69c 100644
--- a/wcte11xp.c
+++ b/wcte11xp.c
@@ -932,7 +932,7 @@ static int t1xxp_spanconfig(struct zt_span *span, struct zt_lineconfig *lc)
span->txlevel = lc->lbo;
span->rxlevel = 0;
/* Do we want to SYNC on receive or not */
- wc->sync = lc->sync;
+ wc->sync = (lc->sync) ? 1 : 0;
/* If already running, apply changes immediately */
if (span->flags & ZT_FLAG_RUNNING)
return t1xxp_startup(span);