Author: ekohl
Date: Wed Sep 21 06:11:02 2016
New Revision: 72753
URL:
http://svn.reactos.org/svn/reactos?rev=72753&view=rev
Log:
[LSALIB]
LsaRegisterLogonProcess: Do not wait for \\SECURITY\\LSA_AUTHENTICATION_INITIALIZED to get
signaled as it breaks the boot.
Modified:
trunk/reactos/sdk/lib/lsalib/lsa.c
Modified: trunk/reactos/sdk/lib/lsalib/lsa.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/lib/lsalib/lsa.c?rev=7…
==============================================================================
--- trunk/reactos/sdk/lib/lsalib/lsa.c [iso-8859-1] (original)
+++ trunk/reactos/sdk/lib/lsalib/lsa.c [iso-8859-1] Wed Sep 21 06:11:02 2016
@@ -274,9 +274,13 @@
OUT PLSA_OPERATIONAL_MODE OperationalMode)
{
NTSTATUS Status;
+#if 0
HANDLE EventHandle;
+#endif
UNICODE_STRING PortName; // =
RTL_CONSTANT_STRING(L"\\LsaAuthenticationPort");
+#if 0
OBJECT_ATTRIBUTES ObjectAttributes;
+#endif
SECURITY_QUALITY_OF_SERVICE SecurityQos;
LSA_CONNECTION_INFO ConnectInfo;
ULONG ConnectInfoLength = sizeof(ConnectInfo);
@@ -287,6 +291,7 @@
if (LogonProcessName->Length > LSASS_MAX_LOGON_PROCESS_NAME_LENGTH)
return STATUS_NAME_TOO_LONG;
+#if 0
/*
* First check whether the LSA server is ready:
* open the LSA event and wait on it.
@@ -312,6 +317,7 @@
DPRINT1("NtWaitForSingleObject failed (Status 0x%08lx)\n", Status);
return Status;
}
+#endif
/* Now attempt the connection */
RtlInitUnicodeString(&PortName, L"\\LsaAuthenticationPort");