ts_31_102: Fix FID of EF.OPL5G (it's 4F08 instead of 6F08)

Change-Id: I68c7ad93dabd768d80ae629498aee29d7bab5542
This commit is contained in:
Harald Welte 2023-05-24 15:25:26 +02:00 committed by laforge
parent 04bd5140fd
commit 5206429c0c
1 changed files with 1 additions and 1 deletions

View File

@ -1052,7 +1052,7 @@ class EF_UAC_AIC(TransparentEF):
# TS 31.102 Section 4.4.11.9
class EF_OPL5G(LinFixedEF):
def __init__(self, fid='6f08', sfid=0x08, name='EF.OPL5G', desc='5GS Operator PLMN List', **kwargs):
def __init__(self, fid='4f08', sfid=0x08, name='EF.OPL5G', desc='5GS Operator PLMN List', **kwargs):
super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, rec_len=(10, None), **kwargs)
Tai = Struct('mcc_mnc'/BcdAdapter(Bytes(3)), 'tac_min'/HexAdapter(Bytes(3)),
'tac_max'/HexAdapter(Bytes(3)))