aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-01-24 14:27:25 +0100
committerHarald Welte <laforge@osmocom.org>2023-01-24 14:37:13 +0100
commite6d7b14f438640e36c60f42c34d9b69a32055a4e (patch)
tree3006e8b3db4cae590e3ee86612f308e86293c0e6
parentbc7437d3b6df686c62af289fe49a58f31a176a04 (diff)
gsm_r: Fix typo (it's EF.FN, not EF.EN)
-rw-r--r--pySim/gsm_r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim/gsm_r.py b/pySim/gsm_r.py
index 8464197..ed85c73 100644
--- a/pySim/gsm_r.py
+++ b/pySim/gsm_r.py
@@ -60,7 +60,7 @@ class EF_FN(LinFixedEF):
"""Section 7.2"""
def __init__(self):
- super().__init__(fid='6ff1', sfid=None, name='EF.EN',
+ super().__init__(fid='6ff1', sfid=None, name='EF.FN',
desc='Functional numbers', rec_len=(9, 9))
self._construct = Struct('functional_number_and_type'/FuncNTypeAdapter(Bytes(8)),
'list_number'/Int8ub)