aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-26 22:40:22 +0100
committerHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-26 22:40:22 +0100
commit16fc662d5becb572d1245ea02682d97e0ec2ad6d (patch)
tree30efca88eff5f6e6b172c653d4e1e79b58311d3b
parent5d55bf4ecc774d18645247b8f67f94b43d0414f0 (diff)
print TS name in RLL ERR IND
-rw-r--r--openbsc/src/abis_rsl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/abis_rsl.c b/openbsc/src/abis_rsl.c
index d42a98b0d..1190d8157 100644
--- a/openbsc/src/abis_rsl.c
+++ b/openbsc/src/abis_rsl.c
@@ -1383,7 +1383,8 @@ static int rsl_rx_rll_err_ind(struct msgb *msg)
struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
u_int8_t *rlm_cause = rllh->data;
- LOGP(DRLL, LOGL_ERROR, "ERROR INDICATION cause=0x%02x\n", rlm_cause[1]);
+ LOGP(DRLL, LOGL_ERROR, "%s ERROR INDICATION cause=0x%02x\n",
+ gsm_ts_name(msg->lchan->ts), rlm_cause[1]);
rll_indication(msg->lchan, rllh->link_id, BSC_RLLR_IND_ERR_IND);