mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
secur32: Fix ntlm_auth version number check when registering the NTLM SSP.
This commit is contained in:
parent
809e4124d7
commit
7325bbd127
1 changed files with 4 additions and 2 deletions
|
@ -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…
Reference in a new issue