mirror of https://github.com/BOINC/boinc.git
- 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:
parent
6e21bd3633
commit
4c4532a35e
|
@ -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
|
||||
|
|
|
@ -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){
|
||||
|
|
Loading…
Reference in New Issue