MGR: If LOCKFILE doesn't already exist, core client isn't running so skip further testing

svn path=/trunk/boinc/; revision=18421
This commit is contained in:
Charlie Fenton 2009-06-15 22:40:12 +00:00
parent 76b9af4153
commit 9bc71f510e
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ bool CBOINCClientManager::IsBOINCCoreRunning() {
static FILE_LOCK file_lock;
sprintf(path, "%s/%s", (char *)wxGetApp().GetDataDirectory().char_str(), LOCK_FILE_NAME);
if (boinc_file_exists(path) { // If there is no lock file, core is not running
if (boinc_file_exists(path)) { // If there is no lock file, core is not running
if (file_lock.lock(path)) {
running = true;
} else {