aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/abis_rsl.c
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-26 22:40:22 +0100
committerHarald Welte <laforge@gnumonks.org>2009-12-26 22:48:25 +0100
commit73b82bbf92ca64f5f96a1dbad2cb003fb740fcbe (patch)
tree2a47f6468c72866e9a3a88ca1df5d26421483a88 /openbsc/src/abis_rsl.c
parentfc05750cd8674882e13a41be2058ab1741853052 (diff)
print TS name in RLL ERR IND
Diffstat (limited to 'openbsc/src/abis_rsl.c')
-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 8d76d3e8d..428cfdea7 100644
--- a/openbsc/src/abis_rsl.c
+++ b/openbsc/src/abis_rsl.c
@@ -1380,7 +1380,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);