elm_config: remove profile name reading logic from data dir

Nothing writes any profile name on profile.cfg inside data dir
This patch removes the logic.

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D7351
This commit is contained in:
Wonki Kim 2018-11-23 11:12:01 +00:00 committed by Cedric BAIL
parent 30db122db4
commit 6c4e49d970
1 changed files with 2 additions and 7 deletions

View File

@ -1454,14 +1454,9 @@ _profile_fetch_from_conf(void)
}
}
for (i = 0; i < 2 && !_use_build_config; i++)
if(!_use_build_config)
{
// user profile
if (i == 0)
_elm_config_user_dir_snprintf(buf, sizeof(buf), "config/profile.cfg");
// system profile
else if (i == 1)
_elm_data_dir_snprintf(buf, sizeof(buf), "config/profile.cfg");
_elm_config_user_dir_snprintf(buf, sizeof(buf), "config/profile.cfg");
ef = eet_open(buf, EET_FILE_MODE_READ);
if (ef)
{