aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-12-24 14:49:07 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-24 14:49:07 +0100
commit844eab1df5fd6d09ec56f21ba59df910af8c8579 (patch)
tree994492ad92eebf8398cc54a016a9674bac2d2d59 /openbsc
parent8410597dd739d4cd91b3152aa9c921ba9678307f (diff)
rsl: fix "CONNECTION FAIL: RELEASING" message
Diffstat (limited to 'openbsc')
-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 aa3127013..86f458f40 100644
--- a/openbsc/src/abis_rsl.c
+++ b/openbsc/src/abis_rsl.c
@@ -955,7 +955,7 @@ static int rsl_rx_conn_fail(struct msgb *msg)
struct tlv_parsed tp;
/* FIXME: print which channel */
- LOGP(DRSL, LOGL_NOTICE, "CONNECTION FAIL: RELEASING\n");
+ LOGP(DRSL, LOGL_NOTICE, "CONNECTION FAIL: RELEASING");
rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
@@ -963,6 +963,7 @@ static int rsl_rx_conn_fail(struct msgb *msg)
print_rsl_cause(LOGL_NOTICE, TLVP_VAL(&tp, RSL_IE_CAUSE),
TLVP_LEN(&tp, RSL_IE_CAUSE));
+ LOGP(DRSL, LOGL_NOTICE, "\n");
/* FIXME: only free it after channel release ACK */
return rsl_rf_chan_release(msg->lchan);
}