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
This commit is contained in:
Harald Welte 2020-03-21 16:23:58 +01:00
parent b8c1da1762
commit 2d284df17b
1 changed files with 1 additions and 1 deletions

View File

@ -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));