Fixes NB#133900, some countries are missing in the country list
[modest] / src / maemo / modest-platform.c
index b54f5f4..1b54395 100644 (file)
@@ -103,20 +103,14 @@ on_modest_conf_update_interval_changed (ModestConf* self,
 static gboolean
 check_required_files (void)
 {
-       FILE *mcc_file = modest_utils_open_mcc_mapping_file (FALSE,NULL);
-       if (!mcc_file) {
-               g_printerr ("modest: check for mcc file failed\n");
-               return FALSE;
-       } else
-               fclose (mcc_file);
+       FILE *mcc_file = modest_utils_open_mcc_mapping_file ();
 
-
-       mcc_file = modest_utils_open_mcc_mapping_file (TRUE, NULL);
        if (!mcc_file) {
-               g_printerr ("modest: check for mcc file (for LC_MESSAGES) failed\n");
+               g_printerr ("modest: check for mcc file failed\n");
                return FALSE;
-       } else
+       } else {
                fclose (mcc_file);
+       }
 
        if (access(MODEST_PROVIDER_DATA_FILE, R_OK) != 0 &&
            access(MODEST_FALLBACK_PROVIDER_DATA_FILE, R_OK) != 0) {