mirror of https://github.com/BOINC/boinc.git
- sched compile fix
sched/ server_types.C svn path=/trunk/boinc/; revision=12862
This commit is contained in:
parent
b6ed589826
commit
2f2757d4e9
|
@ -5999,3 +5999,8 @@ Rom 8 June 2007
|
|||
configure.ac
|
||||
version.h
|
||||
|
||||
David 8 June 2007
|
||||
- sched compile fix
|
||||
|
||||
sched/
|
||||
server_types.C
|
||||
|
|
|
@ -280,7 +280,9 @@ int SCHEDULER_REQUEST::parse(FILE* fin) {
|
|||
log_messages.printf(SCHED_MSG_LOG::MSG_NORMAL,
|
||||
"SCHEDULER_REQUEST::parse(): unrecognized: %s\n", buf
|
||||
);
|
||||
retval = skip_unrecognized(buf, fin);
|
||||
MIOFILE mf;
|
||||
mf.init_file(fin);
|
||||
retval = skip_unrecognized(buf, mf);
|
||||
if (retval) return retval;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue