- client: finish [22902] (pass user ID, team ID to apps).

Forgot to parse them in scheduler reply.

svn path=/trunk/boinc/; revision=23095
This commit is contained in:
David Anderson 2011-02-23 20:47:25 +00:00
parent 6e21bd3633
commit 4c4532a35e
2 changed files with 11 additions and 0 deletions

View File

@ -1060,3 +1060,10 @@ David 22 Feb 2011
client/
cpu_sched.cpp
client_state.h
David 22 Feb 2011
- client: finish [22902] (pass user ID, team ID to apps).
Forgot to parse them in scheduler reply.
client/
scheduler_op.cpp

View File

@ -904,6 +904,10 @@ int SCHEDULER_REPLY::parse(FILE* in, PROJECT* project) {
got_rss_feeds = true;
parse_rss_feed_descs(mf, sr_feeds);
continue;
} else if (parse_int(buf, "<userid>", project->userid)) {
continue;
} else if (parse_int(buf, "<teamid>", project->teamid)) {
continue;
} else if (match_tag(buf, "<!--")) {
continue;
} else if (strlen(buf)>1){