Fixed typo: asynchronous shutdown is now working (ie. Deskbar doesn't block

the shutdown process any longer).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15922 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-01-11 23:15:49 +00:00
parent 238ba7d321
commit 0248f7e099
+4 -4
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2005, Ingo Weinhold, [email protected].
* Copyright 2005-2006, Ingo Weinhold, [email protected].
* Distributed under the terms of the MIT License.
*/
@@ -1231,9 +1231,9 @@ ShutdownProcess::_WorkerDoShutdown()
// If we are here, the shutdown process has been initiated successfully,
// that is, if an asynchronous BRoster::Shutdown() was requested, we
// notify the caller at this point.
bool synchronously;
if (fRequest->FindBool("synchronously", &synchronously) == B_OK
&& !synchronously) {
bool synchronous;
if (fRequest->FindBool("synchronous", &synchronous) == B_OK
&& !synchronous) {
_SendReply(B_OK);
}