*** empty log message ***

svn path=/trunk/boinc/; revision=11441
This commit is contained in:
David Anderson 2006-11-02 00:16:02 +00:00
parent e9161f7a05
commit 8088e898eb
2 changed files with 9 additions and 3 deletions

View File

@ -11984,3 +11984,9 @@ David 1 Nov 2006
client/
app.C
app_control.C
David 1 Nov 2006
- core client: account manager reply parsing was broken
client/
acct_mgr.C

View File

@ -266,13 +266,13 @@ int ACCT_MGR_OP::parse(FILE* f) {
if (retval) return retval;
continue;
}
if (!strcmp(tag, "<account>")) {
if (!strcmp(tag, "account")) {
AM_ACCOUNT account;
retval = account.parse(xp);
if (!retval) accounts.push_back(account);
continue;
}
if (!strcmp(tag, "<global_preferences>")) {
if (!strcmp(tag, "global_preferences")) {
retval = dup_element_contents(
f,
"</global_preferences>",
@ -287,7 +287,7 @@ int ACCT_MGR_OP::parse(FILE* f) {
}
continue;
}
if (xp.parse_str(tag, "<host_venue>", host_venue, sizeof(host_venue))) continue;
if (xp.parse_str(tag, "host_venue", host_venue, sizeof(host_venue))) continue;
}
return ERR_XML_PARSE;
}