From 6443238ed078e0e21325a80c2d67d4397ba67ba5 Mon Sep 17 00:00:00 2001 From: Matthew Fredrickson Date: Fri, 29 Jan 2010 21:55:52 +0000 Subject: [PATCH] Sense of statement was inverted from what it should have been. Might have caused false T200 operation on reception of I-frames. git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@1457 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- q921.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q921.c b/q921.c index 4f9a7ae..33e7d01 100644 --- a/q921.c +++ b/q921.c @@ -1671,7 +1671,7 @@ static pri_event *q921_iframe_rx(struct pri *pri, q921_h *h, int len) stop_t200(pri); start_t203(pri); } else { - if (h->i.n_r == pri->v_a) { + if (h->i.n_r != pri->v_a) { update_v_a(pri, h->i.n_r); stop_t200(pri); start_t200(pri);