From 1dd2775d56b34260b6f7becff4f0c6d4450db2ff Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 19 Nov 2018 14:28:45 +0100 Subject: bsc: si: Fix SI2ter L2 pseudo length 3GPP TS 04.08 V7.21.0, section "9.1.34 System information type 2ter" states: """ This message has a L2 pseudo length of 18. This message may be sent by the network with either a L2 pseudo length of 18 or some other value. A mobile station that does not ignore this message shall not discard the message due to a received L2 pseudo length different from 18. """ Change-Id: I45cb217ebdf89b82b0f37f38eef7a1e3a651f541 --- src/osmo-bsc/system_information.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/osmo-bsc/system_information.c') diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c index 18c609b3b..0148ac389 100644 --- a/src/osmo-bsc/system_information.c +++ b/src/osmo-bsc/system_information.c @@ -802,7 +802,7 @@ static int generate_si2ter(enum osmo_sysinfo_type t, struct gsm_bts *bts) memset(si2t, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN); - si2t->header.l2_plen = GSM48_LEN2PLEN(22); + si2t->header.l2_plen = GSM48_LEN2PLEN(18); si2t->header.rr_protocol_discriminator = GSM48_PDISC_RR; si2t->header.skip_indicator = 0; si2t->header.system_information = GSM48_MT_RR_SYSINFO_2ter; -- cgit v1.2.3