- sched compile fix

sched/
    server_types.C

svn path=/trunk/boinc/; revision=12862
This commit is contained in:
David Anderson 2007-06-08 23:01:25 +00:00
parent b6ed589826
commit 2f2757d4e9
2 changed files with 8 additions and 1 deletions

View File

@ -5999,3 +5999,8 @@ Rom 8 June 2007
configure.ac
version.h
David 8 June 2007
- sched compile fix
sched/
server_types.C

View File

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