mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9619
This commit is contained in:
parent
12807ea755
commit
84bc273a27
|
@ -2686,3 +2686,11 @@ David 7 Mar 2006
|
||||||
scheduler_op.C
|
scheduler_op.C
|
||||||
lib/
|
lib/
|
||||||
error_numbers.C
|
error_numbers.C
|
||||||
|
|
||||||
|
Rom 7 Mar 2006
|
||||||
|
- Bug Fix: Somewhere along the line, the code to store the account
|
||||||
|
manager login name and password hash was removed from the source
|
||||||
|
tree. Put it back in.
|
||||||
|
|
||||||
|
client/
|
||||||
|
acct_mgr.C
|
||||||
|
|
|
@ -72,6 +72,7 @@ int ACCT_MGR_OP::do_rpc(
|
||||||
error_num = ERR_INVALID_URL;
|
error_num = ERR_INVALID_URL;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(ami.acct_mgr_url, url.c_str());
|
strcpy(ami.acct_mgr_url, url.c_str());
|
||||||
strcpy(ami.acct_mgr_name, "");
|
strcpy(ami.acct_mgr_name, "");
|
||||||
strcpy(ami.login_name, name.c_str());
|
strcpy(ami.login_name, name.c_str());
|
||||||
|
@ -286,6 +287,8 @@ void ACCT_MGR_OP::handle_reply(int http_op_retval) {
|
||||||
if (sig_ok) {
|
if (sig_ok) {
|
||||||
strcpy(gstate.acct_mgr_info.acct_mgr_name, ami.acct_mgr_name);
|
strcpy(gstate.acct_mgr_info.acct_mgr_name, ami.acct_mgr_name);
|
||||||
strcpy(gstate.acct_mgr_info.signing_key, ami.signing_key);
|
strcpy(gstate.acct_mgr_info.signing_key, ami.signing_key);
|
||||||
|
strcpy(gstate.acct_mgr_info.login_name, ami.login_name);
|
||||||
|
strcpy(gstate.acct_mgr_info.password_hash, ami.password_hash);
|
||||||
|
|
||||||
// attach to new projects
|
// attach to new projects
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue