cmm: small fix for linux fs (/sys/settings/ -> /sys/SETTINGS/)

git-svn-id: svn://kolibrios.org@7213 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2018-04-01 12:34:23 +00:00
parent a4ee0eb182
commit a66f003bd1

View File

@ -288,7 +288,7 @@ enum
strcpy(ini_path, "/kolibrios/settings/");
strcat(ini_path, ini_name);
if (!file_exists(ini_path)) {
strcpy(ini_path, "/sys/settings/");
strcpy(ini_path, "/sys/SETTINGS/");
strcat(ini_path, ini_name);
}
return ini_path;