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
30435a59
Commit
30435a59
authored
Oct 21, 2010
by
Juan Lang
Committed by
Alexandre Julliard
Oct 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Trace flags as hex values.
parent
ae91158e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
negotiate.c
dlls/secur32/negotiate.c
+1
-1
ntlm.c
dlls/secur32/ntlm.c
+1
-1
schannel.c
dlls/secur32/schannel.c
+1
-1
wrapper.c
dlls/secur32/wrapper.c
+1
-1
No files found.
dlls/secur32/negotiate.c
View file @
30435a59
...
...
@@ -136,7 +136,7 @@ static SECURITY_STATUS SEC_ENTRY nego_InitializeSecurityContextA(
{
SECURITY_STATUS
ret
;
TRACE
(
"%p %p %s
%d
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
TRACE
(
"%p %p %s
0x%08x
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
debugstr_a
(
pszTargetName
),
fContextReq
,
Reserved1
,
TargetDataRep
,
pInput
,
Reserved1
,
phNewContext
,
pOutput
,
pfContextAttr
,
ptsExpiry
);
if
(
phCredential
){
...
...
dlls/secur32/ntlm.c
View file @
30435a59
...
...
@@ -443,7 +443,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
SEC_CHAR
*
domain
=
NULL
;
SEC_CHAR
*
password
=
NULL
;
TRACE
(
"%p %p %s
%d
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
TRACE
(
"%p %p %s
0x%08x
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
debugstr_w
(
pszTargetName
),
fContextReq
,
Reserved1
,
TargetDataRep
,
pInput
,
Reserved1
,
phNewContext
,
pOutput
,
pfContextAttr
,
ptsExpiry
);
...
...
dlls/secur32/schannel.c
View file @
30435a59
...
...
@@ -693,7 +693,7 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
struct
schan_transport
transport
;
int
err
;
TRACE
(
"%p %p %s
%d
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
TRACE
(
"%p %p %s
0x%08x
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
debugstr_w
(
pszTargetName
),
fContextReq
,
Reserved1
,
TargetDataRep
,
pInput
,
Reserved1
,
phNewContext
,
pOutput
,
pfContextAttr
,
ptsExpiry
);
...
...
dlls/secur32/wrapper.c
View file @
30435a59
...
...
@@ -251,7 +251,7 @@ SECURITY_STATUS WINAPI InitializeSecurityContextA(
PCredHandle
cred
=
NULL
;
PCredHandle
ctxt
=
NULL
;
TRACE
(
"%p %p %s
%d
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
TRACE
(
"%p %p %s
0x%08x
%d %d %p %d %p %p %p %p
\n
"
,
phCredential
,
phContext
,
debugstr_a
(
pszTargetName
),
fContextReq
,
Reserved1
,
TargetDataRep
,
pInput
,
Reserved1
,
phNewContext
,
pOutput
,
pfContextAttr
,
ptsExpiry
);
...
...
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