mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 18:25:19 +00:00
secur32: Fix ntlm_auth version number check when registering the NTLM SSP.
This commit is contained in:
parent
809e4124d7
commit
7325bbd127
@ -1760,8 +1760,10 @@ void SECUR32_initNTLMSP(void)
|
||||
check_version(helper);
|
||||
|
||||
if( (helper->major > MIN_NTLM_AUTH_MAJOR_VERSION) ||
|
||||
(helper->major = MIN_NTLM_AUTH_MAJOR_VERSION &&
|
||||
helper->minor >= MIN_NTLM_AUTH_MINOR_VERSION &&
|
||||
(helper->major == MIN_NTLM_AUTH_MAJOR_VERSION &&
|
||||
helper->minor > MIN_NTLM_AUTH_MINOR_VERSION) ||
|
||||
(helper->major == MIN_NTLM_AUTH_MAJOR_VERSION &&
|
||||
helper->minor == MIN_NTLM_AUTH_MINOR_VERSION &&
|
||||
helper->micro >= MIN_NTLM_AUTH_MICRO_VERSION) )
|
||||
{
|
||||
SecureProvider *provider = SECUR32_addProvider(&ntlmTableA, &ntlmTableW, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user