Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
c1e724bc
Commit
c1e724bc
authored
May 26, 2007
by
Kai Blin
Committed by
Alexandre Julliard
May 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Downgrade WARN to TRACE, fix another TRACE.
parent
5f8d1502
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ntlm.c
dlls/secur32/ntlm.c
+3
-2
No files found.
dlls/secur32/ntlm.c
View file @
c1e724bc
...
...
@@ -608,7 +608,8 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
if
(
pInput
->
pBuffers
[
input_token_idx
].
cbBuffer
>
max_len
)
{
TRACE
(
"pInput->pBuffers[0].cbBuffer is: %ld
\n
"
,
TRACE
(
"pInput->pBuffers[%d].cbBuffer is: %ld
\n
"
,
input_token_idx
,
pInput
->
pBuffers
[
input_token_idx
].
cbBuffer
);
ret
=
SEC_E_INVALID_TOKEN
;
goto
isc_end
;
...
...
@@ -657,7 +658,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
if
(
!
pOutput
||
((
token_idx
=
ntlm_GetTokenBufferIndex
(
pOutput
))
==
-
1
))
{
WARN
(
"no SECBUFFER_TOKEN buffer could be found
\n
"
);
TRACE
(
"no SECBUFFER_TOKEN buffer could be found
\n
"
);
ret
=
SEC_E_BUFFER_TOO_SMALL
;
goto
isc_end
;
}
...
...
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