mirror of https://github.com/BOINC/boinc.git
parent
d45aa6b6e7
commit
ef42624319
|
@ -318,6 +318,7 @@ void CLIENT_STATE::handle_scheduler_reply(
|
|||
|
||||
f = fopen(SCHED_OP_RESULT_FILE, "r");
|
||||
retval = sr.parse(f);
|
||||
fclose(f);
|
||||
|
||||
if (strlen(sr.project_name)) {
|
||||
strcpy(project->project_name, sr.project_name);
|
||||
|
|
|
@ -351,7 +351,7 @@ int HTTP_OP_SET::insert(HTTP_OP* ho) {
|
|||
bool HTTP_OP_SET::poll() {
|
||||
unsigned int i;
|
||||
HTTP_OP* htp;
|
||||
int n;
|
||||
int n, retval;
|
||||
bool action = false;
|
||||
|
||||
for (i=0; i<http_ops.size(); i++) {
|
||||
|
|
|
@ -167,6 +167,7 @@ int SCHEDULER_OP::parse_master_file(vector<STRING256> &urls) {
|
|||
urls.push_back(str);
|
||||
}
|
||||
}
|
||||
fclose(f);
|
||||
if (log_flags.sched_op_debug) {
|
||||
printf("Parsed master file; got %d scheduler URLs\n", urls.size());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue