From 6e382c28187e9daef265af7598de8644136cefdb Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 5 May 2010 18:12:31 +0000 Subject: [PATCH] - client: include the configured download url in the get_newer_version RPC. client/ gui_rpc_server_ops.cpp svn path=/trunk/boinc/; revision=21385 --- checkin_notes | 7 +++++++ client/gui_rpc_server_ops.cpp | 7 +++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 3cfd86ac89..61ce49e3f7 100644 --- a/checkin_notes +++ b/checkin_notes @@ -3326,3 +3326,10 @@ Rom 3 May 2010 client/ net_stats.cpp + +Rom 5 May 2010 + - client: include the configured download url in the + get_newer_version RPC. + + client/ + gui_rpc_server_ops.cpp diff --git a/client/gui_rpc_server_ops.cpp b/client/gui_rpc_server_ops.cpp index 968f2ad28b..e7768b4d98 100644 --- a/client/gui_rpc_server_ops.cpp +++ b/client/gui_rpc_server_ops.cpp @@ -848,8 +848,11 @@ static void handle_acct_mgr_rpc_poll(char*, MIOFILE& fout) { } static void handle_get_newer_version(MIOFILE& fout) { - fout.printf("%s\n", - gstate.newer_version.c_str() + fout.printf( + "%s\n" + "%s\n", + gstate.newer_version.c_str(), + config.client_download_url.c_str() ); }