From df4d20e95bd7a065aa9d27b97ed9743e618496f1 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Mon, 24 Sep 2012 13:49:38 +0200 Subject: [PATCH] Fix: T3193 is now started with the correct value --- src/gprs_rlcmac_data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gprs_rlcmac_data.cpp b/src/gprs_rlcmac_data.cpp index 265aed6a..8bb1df65 100644 --- a/src/gprs_rlcmac_data.cpp +++ b/src/gprs_rlcmac_data.cpp @@ -1585,7 +1585,7 @@ int gprs_rlcmac_downlink_ack(struct gprs_rlcmac_tbf *tbf, uint8_t final, "release.\n"); /* start T3193 */ tbf_timer_start(tbf, 3193, bts->t3193_msec / 1000, - bts->t3193_msec & 1000); + (bts->t3193_msec % 1000) * 1000); tbf_new_state(tbf, GPRS_RLCMAC_WAIT_RELEASE); return 0;