diff options
author | Andrzej Zaborowski <andrew.zaborowski@intel.com> | 2009-09-23 23:23:43 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-09-23 14:27:26 -0500 |
commit | cb19aa987fd30997d852041972a5048ec7f2db3a (patch) | |
tree | 146005d05a6675bccd8339c0ff1a1cc0ee5cbe43 /src | |
parent | abe12c66bdb44625ccf0ed82795baacfd1a91bf4 (diff) | |
download | ofono-cb19aa987fd30997d852041972a5048ec7f2db3a.tar.bz2 |
Rename eflp_format to efli_format, semantically opposite.
Diffstat (limited to 'src')
-rw-r--r-- | src/sim.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1065,7 +1065,7 @@ static void sim_efpl_read_cb(int ok, struct ofono_sim *sim = userdata; const char *path = __ofono_atom_get_path(sim->atom); DBusConnection *conn = ofono_dbus_get_connection(); - gboolean eflp_format = TRUE; + gboolean efli_format = TRUE; GSList *efli = NULL; GSList *efpl = NULL; @@ -1077,9 +1077,9 @@ static void sim_efpl_read_cb(int ok, skip_efpl: if (sim->efli && sim->efli_length > 0) { - eflp_format = sim_efli_format(sim->efli, sim->efli_length); + efli_format = sim_efli_format(sim->efli, sim->efli_length); - if (eflp_format) + if (efli_format) efli = parse_language_list(sim->efli, sim->efli_length); else efli = parse_eflp(sim->efli, sim->efli_length); @@ -1096,7 +1096,7 @@ skip_efpl: * preference to the EFPL at the MF unless... * Otherwise in order of preference according to TS 51.011 */ - if (eflp_format) + if (efli_format) sim->language_prefs = concat_lang_prefs(efli, efpl); else sim->language_prefs = concat_lang_prefs(efpl, efli); |