From f2d73d3a96e4eb7057ec5ba60da9cc73ab2db77b Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 19 Apr 2004 20:56:57 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=3272 --- client/scheduler_op.C | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/scheduler_op.C b/client/scheduler_op.C index 7c183e343b..68fdf1cae8 100644 --- a/client/scheduler_op.C +++ b/client/scheduler_op.C @@ -652,6 +652,10 @@ int SCHEDULER_REPLY::parse(FILE* in, PROJECT* project) { continue; } else if (match_tag(buf, "")) { trickle_up_ack = true; + } else if (parse_str(buf, "", project->email_hash, sizeof(project->email_hash))) { + continue; + } else if (parse_str(buf, "", 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); }