tbf.cpp: use new tlli instead of old tlli

The old tlli might be 0x00000000.

Change-Id: I2fd6fec022506e203d05e91c36ccd9e020ff816c
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 820131c..99ad30a 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -1311,7 +1311,7 @@
 	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 @@
 	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;