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