mirror of https://github.com/BOINC/boinc.git
- SCHED: Scheduler didn't have a means of parsing android version setting
from plan_class_spec.xml so the min/max_android_version settings weren't functioning
This commit is contained in:
parent
90daa20025
commit
53a5151cf2
|
@ -897,6 +897,8 @@ int PLAN_CLASS_SPEC::parse(XML_PARSER& xp) {
|
|||
}
|
||||
if (xp.parse_double("min_os_version", min_os_version)) continue;
|
||||
if (xp.parse_double("max_os_version", max_os_version)) continue;
|
||||
if (xp.parse_double("min_android_version", min_android_version)) continue;
|
||||
if (xp.parse_double("max_android_version", max_android_version)) continue;
|
||||
if (xp.parse_str("project_prefs_tag", project_prefs_tag, sizeof(project_prefs_tag))) continue;
|
||||
if (xp.parse_str("project_prefs_regex", buf, sizeof(buf))) {
|
||||
if (regcomp(&(project_prefs_regex), buf, REG_EXTENDED|REG_NOSUB) ) {
|
||||
|
|
Loading…
Reference in New Issue