fix typo in previous commit (patch was using old parser)

svn path=/trunk/boinc/; revision=25347
This commit is contained in:
Bernd Machenschalk 2012-02-27 12:26:46 +00:00
parent 5bb86f79b8
commit d6290ac541
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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;
} }