From 1f5960658e64c60d4f9db38b55b289941095c14f Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 15 Mar 2006 03:33:26 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=9653 --- checkin_notes | 8 ++++++++ client/acct_mgr.C | 1 + 2 files changed, 9 insertions(+) diff --git a/checkin_notes b/checkin_notes index d021f8d96d..7639fc8b7a 100755 --- a/checkin_notes +++ b/checkin_notes @@ -2843,3 +2843,11 @@ Charlie 14 Mar 2006 api/ boinc_api.C,h + +Rom 14 Mar 2006 + - Bug Fix: Copy over the account manager url from the rpc to + the global account manager structure so that the + acct_mgr_url.xml file can be created. + + client/ + acct_mgr.C diff --git a/client/acct_mgr.C b/client/acct_mgr.C index ffc64c46e0..3d9a2cea73 100644 --- a/client/acct_mgr.C +++ b/client/acct_mgr.C @@ -285,6 +285,7 @@ void ACCT_MGR_OP::handle_reply(int http_op_retval) { } if (sig_ok) { + strcpy(gstate.acct_mgr_info.acct_mgr_url, ami.acct_mgr_url); 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.login_name, ami.login_name);