svn path=/trunk/boinc/; revision=20835

This commit is contained in:
David Anderson 2010-03-11 02:11:40 +00:00
parent 2326314209
commit 10507c3d9f
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ bool ClientStateIndicator::Suspended() {
CC_STATUS status;
bool result = false;
pDoc->GetCoreClientStatus(status);
if ( pDoc->IsConnected() && status.task_suspend_reason > 0 && status.task_suspend_reason != SUSPEND_REASON_DISK_SIZE && status.task_suspend_reason != SUSPEND_REASON_THROTTLE ) {
if ( pDoc->IsConnected() && status.task_suspend_reason > 0 && status.task_suspend_reason != SUSPEND_REASON_DISK_SIZE && status.task_suspend_reason != SUSPEND_REASON_CPU_THROTTLE ) {
result = true;
}
return result;