svn path=/trunk/boinc/; revision=390
This commit is contained in:
David Anderson 2002-08-29 04:19:51 +00:00
parent d45aa6b6e7
commit ef42624319
3 changed files with 3 additions and 1 deletions

View File

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

View File

@ -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++) {

View File

@ -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());
}