*** empty log message ***

svn path=/trunk/boinc/; revision=3272
This commit is contained in:
David Anderson 2004-04-19 20:56:57 +00:00
parent 1e13d8e1d9
commit f2d73d3a96
1 changed files with 4 additions and 0 deletions

View File

@ -652,6 +652,10 @@ int SCHEDULER_REPLY::parse(FILE* in, PROJECT* project) {
continue;
} else if (match_tag(buf, "<trickle_up_ack/>")) {
trickle_up_ack = true;
} else if (parse_str(buf, "<email_hash>", project->email_hash, sizeof(project->email_hash))) {
continue;
} else if (parse_str(buf, "<cross_project_id>", project->cross_project_id, sizeof(project->cross_project_id))) {
continue;
} else if (strlen(buf)>1){
msg_printf(project, MSG_ERROR, "SCHEDULER_REPLY::parse(): unrecognized %s\n", buf);
}