*** empty log message ***

svn path=/trunk/boinc/; revision=10010
This commit is contained in:
Rom Walton 2006-04-21 21:42:27 +00:00
parent 84ced9864c
commit a0e0b2fc4a
2 changed files with 9 additions and 2 deletions

View File

@ -4102,3 +4102,10 @@ Walt 20 Apr 2006
client/
http_curl.C,h
Rom 21 Apr 2006
- Bug Fix: Fix the account lookup and get project config rpcs which
I broke fixing the setlocale stuff.
lib/
gui_rpc_client_ops.C

View File

@ -1981,7 +1981,7 @@ int RPC_CLIENT::get_project_config_poll(PROJECT_CONFIG& pc) {
setlocale(LC_ALL, "C");
retval = rpc.do_rpc("<get_project_config_poll/>\n");
if (retval) {
if (!retval) {
retval = pc.parse(rpc.fin);
}
@ -2017,7 +2017,7 @@ int RPC_CLIENT::lookup_account(ACCOUNT_IN& ai) {
);
retval = rpc.do_rpc(buf);
if (retval) {
if (!retval) {
retval = rpc.parse_reply();
}