- scheduler: bug fix to the above

svn path=/trunk/boinc/; revision=22662
This commit is contained in:
David Anderson 2010-11-09 19:41:53 +00:00
parent 3648818499
commit 8905cb6545
2 changed files with 12 additions and 6 deletions

View File

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

View File

@ -902,12 +902,12 @@ int SCHEDULER_REPLY::write(FILE* fout, SCHEDULER_REQUEST& sreq) {
}
fprintf(fout,
"<have_cpu_apps>%d</have_cpu_apps>\n"
"<have_cuda_apps>%d</have_cuda_apps>\n"
"<have_ati_apps>%d</have_ati_apps>\n",
ssp->have_cpu_apps?1:0,
ssp->have_cuda_apps?1:0,
ssp->have_ati_apps?1:0
"<no_cpu_apps>%d</no_cpu_apps>\n"
"<no_cuda_apps>%d</no_cuda_apps>\n"
"<no_ati_apps>%d</no_ati_apps>\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);