aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-05-24 15:25:26 +0200
committerlaforge <laforge@osmocom.org>2023-05-25 07:55:44 +0000
commit5206429c0c3d0bd777ba0abb5f652b6b4685bb8e (patch)
treede1be2a6ebdb3326be196b1726a17631eefac2f9
parent04bd5140fddd9eee4440122d7882663414885094 (diff)
ts_31_102: Fix FID of EF.OPL5G (it's 4F08 instead of 6F08)
-rw-r--r--pySim/ts_31_102.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim/ts_31_102.py b/pySim/ts_31_102.py
index a340d32..08a99f6 100644
--- a/pySim/ts_31_102.py
+++ b/pySim/ts_31_102.py
@@ -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)))