From e66e3069a210598a952fdcab793847f9ce045be5 Mon Sep 17 00:00:00 2001 From: tzafrir Date: Tue, 25 Nov 2008 21:01:04 +0000 Subject: Fix handling of an invalid timing (sync) parameter in DAHDI_SPANCONFIG. Fixing issue #13954 in zaptel 1.4 git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@4588 5390a7c7-147a-4af0-8ec9-7488f05a26cb --- kernel/wct1xxp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/wct1xxp.c') diff --git a/kernel/wct1xxp.c b/kernel/wct1xxp.c index aee95c1..f726040 100644 --- a/kernel/wct1xxp.c +++ b/kernel/wct1xxp.c @@ -739,7 +739,7 @@ static int t1xxp_spanconfig(struct zt_span *span, struct zt_lineconfig *lc) struct t1xxp *wc = span->pvt; /* 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); -- cgit v1.2.3