From 36dd22acb7dce60cfdf0027d013fa65e41b328ab Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Thu, 6 Sep 2018 15:20:46 +0200 Subject: inter-BSC HO outgoing: fix L3 forwarding Set msgb->l3h when composing the L3 message. Before this, the unset l3h resulted in erratic size in the RSL L3 Info IE. This likely fixes inter-BSC Handover on the outgoing side, to properly forward the RR Handover Command. Change-Id: Ice37242c90c19adbf0795618fd16fe75f0809317 --- src/osmo-bsc/abis_rsl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bsc/abis_rsl.c b/src/osmo-bsc/abis_rsl.c index 0dd27fdc5..a3c889e93 100644 --- a/src/osmo-bsc/abis_rsl.c +++ b/src/osmo-bsc/abis_rsl.c @@ -689,7 +689,7 @@ int rsl_forward_layer3_info(struct gsm_lchan *lchan, const uint8_t *l3_info, uin return -EINVAL; msg = rsl_msgb_alloc(); - dst = msgb_put(msg, l3_info_len); + msg->l3h = dst = msgb_put(msg, l3_info_len); memcpy(dst, l3_info, l3_info_len); msg->lchan = lchan; -- cgit v1.2.3