aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-03-21 16:23:58 +0100
committerHarald Welte <laforge@osmocom.org>2020-03-21 16:24:53 +0100
commit2d284df17b13b653045a68d881bf0559d9bacb66 (patch)
treee027f614262062cf78b8257445093a64a7e80831
parentb8c1da17621d61872a8868f6b3d0d7f71187b7a8 (diff)
card_fs_sim: Avoid '/' in file names
... as that doesn't work if we want to create a similarly-named file in the local file system. Change-Id: Ib8734e2e4b81c915ab0fbd0d9b6662275b1d33d1
-rw-r--r--src/sim/card_fs_sim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/card_fs_sim.c b/src/sim/card_fs_sim.c
index 3f541f7b..55ce9af7 100644
--- a/src/sim/card_fs_sim.c
+++ b/src/sim/card_fs_sim.c
@@ -431,7 +431,7 @@ int osim_int_cprof_add_gsm(struct osim_file_desc *mf)
add_df_with_ef(gsm, 0x5F33, "DF.ACeS", NULL, 0);
add_df_with_ef(gsm, 0x5F3C, "DF.MExE", sim_ef_in_mexe,
ARRAY_SIZE(sim_ef_in_mexe));
- add_df_with_ef(gsm, 0x5F40, "DF.EIA/TIA-533", NULL, 0);
+ add_df_with_ef(gsm, 0x5F40, "DF.EIA-TIA-533", NULL, 0);
add_df_with_ef(gsm, 0x5F60, "DF.CTS", NULL, 0);
add_df_with_ef(gsm, 0x5F70, "DF.SoLSA", sim_ef_in_solsa,
ARRAY_SIZE(sim_ef_in_solsa));