SI: set type 10 length properly

According to 3GPP TS 44.018 §9.1.50 SI10 is 168 bits long.

Related: OS#5783
Change-Id: Ifd76ebb10029b95a80a85bea4d102d5e100c182c
This commit is contained in:
Max 2023-01-22 23:23:42 +03:00 committed by msuraev
parent 715dc37b10
commit 484f0771cd
1 changed files with 3 additions and 0 deletions

View File

@ -450,6 +450,9 @@ int gsm_bts_trx_set_system_infos(struct gsm_bts_trx *trx)
case SYSINFO_TYPE_6:
si_len[si_type] = 11;
break;
case SYSINFO_TYPE_10:
si_len[si_type] = 21;
break;
default:
si_len[si_type] = GSM_MACBLOCK_LEN;
}