aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-05-11 12:55:31 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-05-11 12:55:44 +0200
commitfaf0ccb241fd0d66d6ed15718f75332c4e879c17 (patch)
tree050afe6ec04d38091a5f3c71c698c8cdd84ff314
parent4b6f0bfe69e283c7760e6b61eb76083f2281602a (diff)
tbf_ul: Use is_tlli_valid() API
-rw-r--r--src/tbf_ul.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp
index 7486b477..9d984a68 100644
--- a/src/tbf_ul.cpp
+++ b/src/tbf_ul.cpp
@@ -372,7 +372,7 @@ struct msgb *gprs_rlcmac_ul_tbf::create_ul_ack(uint32_t fn, uint8_t ts)
* However, it's handier for us to mark contention resolution success
* here since according to spec upon rx UL ACK is the time at which MS
* realizes contention resolution succeeds. */
- if (ms_tlli(ms()) != GSM_RESERVED_TMSI)
+ if (is_tlli_valid())
contention_resolution_success();
if (final) {