[libpri-commits] mattf: branch 1.4 r1457 - /branches/1.4/q921.c
SVN commits to the libpri project
libpri-commits at lists.digium.com
Fri Jan 29 15:55:55 CST 2010
Author: mattf
Date: Fri Jan 29 15:55:52 2010
New Revision: 1457
URL: http://svnview.digium.com/svn/libpri?view=rev&rev=1457
Log:
Sense of statement was inverted from what it should have been. Might have caused false T200 operation on reception of I-frames.
Modified:
branches/1.4/q921.c
Modified: branches/1.4/q921.c
URL: http://svnview.digium.com/svn/libpri/branches/1.4/q921.c?view=diff&rev=1457&r1=1456&r2=1457
==============================================================================
--- branches/1.4/q921.c (original)
+++ branches/1.4/q921.c Fri Jan 29 15:55:52 2010
@@ -1671,7 +1671,7 @@
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);
More information about the libpri-commits
mailing list