From 2f2757d4e9bcb27465f539e36e9378b5f87bc564 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 8 Jun 2007 23:01:25 +0000 Subject: [PATCH] - sched compile fix sched/ server_types.C svn path=/trunk/boinc/; revision=12862 --- checkin_notes | 5 +++++ sched/server_types.C | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index c0386b5548..a7181eb223 100755 --- a/checkin_notes +++ b/checkin_notes @@ -5999,3 +5999,8 @@ Rom 8 June 2007 configure.ac version.h +David 8 June 2007 + - sched compile fix + + sched/ + server_types.C diff --git a/sched/server_types.C b/sched/server_types.C index e71265831c..e8e2c94626 100644 --- a/sched/server_types.C +++ b/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; } }