aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-11-19 14:26:47 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-11-20 09:31:26 +0000
commitedad02731827684f06866a7b7903b5576877883f (patch)
tree57075409f747893f2d10c277fb9d68ba1f09a873 /src
parentf91e147aa7a53d82dbaa0799996afa20dc409c90 (diff)
bsc: si: Fix SI2bis L2 pseudo length
3GPP TS 04.08 V7.21.0, section "9.1.33 System information type 2bis" states: "This message has a L2 pseudo length of 21.". Change-Id: I623c64c446c0973e939e9f1cba0a4d4d2f4f7237
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bsc/system_information.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c
index 086b8e98e..18c609b3b 100644
--- a/src/osmo-bsc/system_information.c
+++ b/src/osmo-bsc/system_information.c
@@ -764,7 +764,7 @@ static int generate_si2bis(enum osmo_sysinfo_type t, struct gsm_bts *bts)
memset(si2b, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
- si2b->header.l2_plen = GSM48_LEN2PLEN(22);
+ si2b->header.l2_plen = GSM48_LEN2PLEN(21);
si2b->header.rr_protocol_discriminator = GSM48_PDISC_RR;
si2b->header.skip_indicator = 0;
si2b->header.system_information = GSM48_MT_RR_SYSINFO_2bis;