diff --git a/checkin_notes b/checkin_notes index a4f9d3a3ad..b8d9c549bb 100755 --- a/checkin_notes +++ b/checkin_notes @@ -508,8 +508,14 @@ Bruce 16 Jan 2006 user/ host_delete.php -David 15 Jan 2006 +David 16 Jan 2006 - compile fix for Win client/ gui_rpc_server.C + +David 16 Jan 2006 + - Call get_host_info() (not just get_filesystem_info()) + before each scheduler RPC (from Bruce Allen) + client/ + cs_scheduler.C diff --git a/client/cs_scheduler.C b/client/cs_scheduler.C index 3f8d02eba3..aeb4fa88b5 100644 --- a/client/cs_scheduler.C +++ b/client/cs_scheduler.C @@ -322,9 +322,9 @@ int CLIENT_STATE::make_scheduler_request(PROJECT* p) { retval = net_stats.write(mf); if (retval) return retval; - // update disk usage, and write host info + // update hardware info, and write host info // - get_filesystem_info(host_info.d_total, host_info.d_free); + host_info.get_host_info(); retval = host_info.write(mf); if (retval) return retval;