From 0248f7e099cab5a4bea8dd301ee561cba28c0256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 11 Jan 2006 23:15:49 +0000 Subject: [PATCH] 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 --- src/servers/registrar/ShutdownProcess.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/servers/registrar/ShutdownProcess.cpp b/src/servers/registrar/ShutdownProcess.cpp index 0520888d82..8c26e4ebad 100644 --- a/src/servers/registrar/ShutdownProcess.cpp +++ b/src/servers/registrar/ShutdownProcess.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2005, Ingo Weinhold, bonefish@users.sf.net. + * Copyright 2005-2006, Ingo Weinhold, bonefish@users.sf.net. * 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); }