*** empty log message ***

svn path=/trunk/boinc/; revision=10179
This commit is contained in:
David Anderson 2006-05-22 20:31:52 +00:00
parent 27997d52ef
commit 50257f73be
2 changed files with 9 additions and 2 deletions

View File

@ -4954,3 +4954,10 @@ Rom 22 May 2006
lib/
diagnostics_win.C
David 23 May 2006
- core client: fix logic error involving the
"5 minutes of network after GUI RPC" thing.
client/
client_state.C

View File

@ -476,8 +476,8 @@ bool CLIENT_STATE::poll_slow_events() {
// if we've had a GUI RPC in last few minutes, relax the normal rules
//
if (gui_rpcs.got_recent_rpc(300)) {
network_suspend_reason &= !SUSPEND_REASON_USER_ACTIVE;
network_suspend_reason &= !SUSPEND_REASON_BATTERIES;
network_suspend_reason &= ~SUSPEND_REASON_USER_ACTIVE;
network_suspend_reason &= ~SUSPEND_REASON_BATTERIES;
}
if (network_suspend_reason) {
if (!network_suspended) {