Fix: T3193 is now started with the correct value

This commit is contained in:
Andreas Eversberg 2012-09-24 13:49:38 +02:00
parent 9a91346fa1
commit df4d20e95b
1 changed files with 1 additions and 1 deletions

View File

@ -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;