From 8905cb654559f30a094c237c7104bca882d01c32 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 9 Nov 2010 19:41:53 +0000 Subject: [PATCH] - scheduler: bug fix to the above svn path=/trunk/boinc/; revision=22662 --- checkin_notes | 6 ++++++ sched/sched_types.cpp | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/checkin_notes b/checkin_notes index fba31a3131..dc4a3b73e1 100644 --- a/checkin_notes +++ b/checkin_notes @@ -7967,3 +7967,9 @@ David 09 Nov 2010 client/ work_fetch.cpp client_types.cpp + +David 09 Nov 2010 + - scheduler: bug fix to the above + + sched/ + sched_types.cpp diff --git a/sched/sched_types.cpp b/sched/sched_types.cpp index 9e46053e23..6a6d32777b 100644 --- a/sched/sched_types.cpp +++ b/sched/sched_types.cpp @@ -902,12 +902,12 @@ int SCHEDULER_REPLY::write(FILE* fout, SCHEDULER_REQUEST& sreq) { } fprintf(fout, - "%d\n" - "%d\n" - "%d\n", - ssp->have_cpu_apps?1:0, - ssp->have_cuda_apps?1:0, - ssp->have_ati_apps?1:0 + "%d\n" + "%d\n" + "%d\n", + ssp->have_cpu_apps?0:1, + ssp->have_cuda_apps?0:1, + ssp->have_ati_apps?0:1 ); gui_urls.get_gui_urls(user, host, team, buf); fputs(buf, fout);