Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
92a86a03
Commit
92a86a03
authored
Aug 17, 2006
by
Kai Blin
Committed by
Alexandre Julliard
Aug 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Mask away NTLMv2 and key exchange flags so we never negotiate it for now.
parent
602e0df9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
ntlm.c
dlls/secur32/ntlm.c
+4
-0
No files found.
dlls/secur32/ntlm.c
View file @
92a86a03
...
...
@@ -516,6 +516,10 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
max_len
-
1
,
&
bin_len
))
!=
SEC_E_OK
)
goto
isc_end
;
/* Mask away the NTLMv2 flag, as well as the key exchange flag */
bin
[
14
]
&=
~
0x08
;
bin
[
15
]
&=
~
0x40
;
/* put the decoded client blob into the out buffer */
ret
=
SEC_I_CONTINUE_NEEDED
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment