* security.cc (subauth): Check if Secur32.dll could be loaded.
This commit is contained in:
parent
df7320e1ba
commit
5aac6665c7
|
@ -1,3 +1,7 @@
|
|||
Mon May 14 16:13:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* security.cc (subauth): Check if Secur32.dll could be loaded.
|
||||
|
||||
Sun May 13 22:49:04 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* path.cc (path_conv::check): Revert allow_ntsec check so that volume
|
||||
|
|
|
@ -195,6 +195,11 @@ subauth (struct passwd *pw)
|
|||
set_errno (LsaNtStatusToWinError(ret));
|
||||
return INVALID_HANDLE_VALUE;
|
||||
}
|
||||
else if (GetLastError () == ERROR_PROC_NOT_FOUND)
|
||||
{
|
||||
debug_printf ("Couldn't load Secur32.dll");
|
||||
return INVALID_HANDLE_VALUE;
|
||||
}
|
||||
/* Get handle to MSV1_0 package. */
|
||||
str2lsa (name, MSV1_0_PACKAGE_NAME);
|
||||
ret = LsaLookupAuthenticationPackage(lsa_hdl, &name, &package_id);
|
||||
|
|
Loading…
Reference in New Issue