aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-08-21 17:52:07 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-08-21 18:59:14 +0200
commit537b149828be91189f99acc8d9c655b8a75b95ee (patch)
treedadb24b705bc31d6d3abd95d43ff680df307de9d
parent4a6fe534ce39b87f64a9b2013b654b92e6d7737d (diff)
tbf: Fix typos in log messages concerning UL/DL
The TBF in create_dl_ass can be of any direction. The text in rcv_resource_request uses DL instead of UL. Sponsored-by: On-Waves ehf
-rw-r--r--src/bts.cpp2
-rw-r--r--src/tbf.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index cb1c585e..5b62a183 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -935,7 +935,7 @@ void gprs_rlcmac_pdch::rcv_resource_request(Packet_Resource_Request_t *request,
if (ul_tbf) {
LOGP(DRLCMACUL, LOGL_NOTICE, "Got RACH from "
"TLLI=0x%08x while %s still "
- "exists. Killing pending DL TBF\n",
+ "exists. Killing pending UL TBF\n",
tlli, tbf_name(ul_tbf));
tbf_free(ul_tbf);
ul_tbf = NULL;
diff --git a/src/tbf.cpp b/src/tbf.cpp
index c63d7cc2..457fe24e 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -737,7 +737,7 @@ struct msgb *gprs_rlcmac_tbf::create_dl_ass(uint32_t fn)
if (!new_dl_tbf) {
LOGP(DRLCMACDL, LOGL_ERROR, "We have a schedule for downlink "
- "assignment at uplink %s, but there is no downlink "
+ "assignment at %s, but there is no downlink "
"TBF\n", tbf_name(this));
dl_ass_state = GPRS_RLCMAC_DL_ASS_NONE;
return NULL;