mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[WINLOGON]
Wait for the LSA server to complete its initialization before initializing the GINA dll. This change is required because future changes to MSGINAs logon code will require access to the LSA. svn path=/trunk/; revision=59002
This commit is contained in:
parent
c3c6b6199f
commit
e0936866ae
1 changed files with 3 additions and 3 deletions
|
@ -363,6 +363,9 @@ WinMain(IN HINSTANCE hInstance,
|
|||
ExitProcess(1);
|
||||
}
|
||||
|
||||
/* Wait for the LSA server */
|
||||
WaitForLsass();
|
||||
|
||||
/* Load and initialize gina */
|
||||
if (!GinaInit(WLSession))
|
||||
{
|
||||
|
@ -374,9 +377,6 @@ WinMain(IN HINSTANCE hInstance,
|
|||
|
||||
DisplayStatusMessage(WLSession, WLSession->WinlogonDesktop, IDS_REACTOSISSTARTINGUP);
|
||||
|
||||
/* Wait for the LSA server */
|
||||
WaitForLsass();
|
||||
|
||||
#if 0
|
||||
/* Connect to NetLogon service (lsass.exe) */
|
||||
/* Real winlogon uses "Winlogon" */
|
||||
|
|
Loading…
Reference in a new issue