mirror of https://github.com/BOINC/boinc.git
fix typo in previous commit (patch was using old parser)
svn path=/trunk/boinc/; revision=25347
This commit is contained in:
parent
5bb86f79b8
commit
d6290ac541
|
@ -2239,3 +2239,9 @@ Bernd 27 feb 2012
|
||||||
sched_config.h
|
sched_config.h
|
||||||
sched_config.cpp
|
sched_config.cpp
|
||||||
handle_request.cpp
|
handle_request.cpp
|
||||||
|
|
||||||
|
Bernd 27 Feb 2012
|
||||||
|
- scheduler: fix typo in previous commit (patch was using old parser)
|
||||||
|
|
||||||
|
sched/
|
||||||
|
sched_config.cpp
|
||||||
|
|
|
@ -199,7 +199,7 @@ int SCHED_CONFIG::parse(FILE* f) {
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (xp.parse_int(tag, "dont_search_host_for_user", retval)) {
|
if (xp.parse_int("dont_search_host_for_user", retval)) {
|
||||||
dont_search_host_for_userid.push_back(retval);
|
dont_search_host_for_userid.push_back(retval);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue