aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf.cpp
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2017-01-17 14:30:34 +0100
committerlynxis lazus <lynxis@fe80.eu>2017-05-01 16:57:48 +0000
commit333d7e634551a7341e9a953d38d5ebbafc091787 (patch)
treec665a2169ecbc99ad78fa14db6f6bbaef802021a /src/tbf.cpp
parente6d26ec09c2bcd2126416a58cb23af27318ec67e (diff)
tbf.cpp: use new tlli instead of old tlli
The old tlli might be 0x00000000. Change-Id: I2fd6fec022506e203d05e91c36ccd9e020ff816c
Diffstat (limited to 'src/tbf.cpp')
-rw-r--r--src/tbf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 820131c7..99ad30ac 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -1311,7 +1311,7 @@ int gprs_rlcmac_tbf::set_tlli_from_ul(uint32_t new_tlli)
if (dl_tbf && dl_tbf->ms() != ms()) {
LOGP(DRLCMACUL, LOGL_NOTICE, "Got RACH from "
"TLLI=0x%08x while %s still exists. "
- "Killing pending DL TBF\n", tlli(),
+ "Killing pending DL TBF\n", new_tlli,
tbf_name(dl_tbf));
tbf_free(dl_tbf);
dl_tbf = NULL;
@@ -1319,7 +1319,7 @@ int gprs_rlcmac_tbf::set_tlli_from_ul(uint32_t new_tlli)
if (ul_tbf && ul_tbf->ms() != ms()) {
LOGP(DRLCMACUL, LOGL_NOTICE, "Got RACH from "
"TLLI=0x%08x while %s still exists. "
- "Killing pending UL TBF\n", tlli(),
+ "Killing pending UL TBF\n", new_tlli,
tbf_name(ul_tbf));
tbf_free(ul_tbf);
ul_tbf = NULL;