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
3da466a9
Commit
3da466a9
authored
May 07, 2008
by
Kai Blin
Committed by
Alexandre Julliard
May 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Fix ntlm tests on Vista.
parent
02c66c23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
ntlm.c
dlls/secur32/tests/ntlm.c
+8
-2
No files found.
dlls/secur32/tests/ntlm.c
View file @
3da466a9
...
...
@@ -869,8 +869,8 @@ static void testAuth(ULONG data_rep, BOOL fake)
ok
(
sec_status
==
SEC_E_OK
,
"pQueryContextAttributesA(SECPKG_ATTR_SIZES) returned %s
\n
"
,
getSecError
(
sec_status
));
ok
(
ctxt_sizes
.
cbMaxToken
==
1904
,
"cbMaxToken should be 1904 but is %lu
\n
"
,
ok
(
(
ctxt_sizes
.
cbMaxToken
==
1904
)
||
(
ctxt_sizes
.
cbMaxToken
==
2888
)
,
"cbMaxToken should be 1904
or 2888
but is %lu
\n
"
,
ctxt_sizes
.
cbMaxToken
);
ok
(
ctxt_sizes
.
cbMaxSignature
==
16
,
"cbMaxSignature should be 16 but is %lu
\n
"
,
...
...
@@ -1039,6 +1039,12 @@ static void testSignSeal(void)
getSecError
(
sec_status
));
sec_status
=
pEncryptMessage
(
client
.
ctxt
,
0
,
&
crypt
,
0
);
if
(
sec_status
==
SEC_E_UNSUPPORTED_FUNCTION
)
{
skip
(
"Encrypt message returned SEC_E_UNSUPPORTED_FUNCTION. "
"Expected on Vista.
\n
"
);
goto
end
;
}
ok
(
sec_status
==
SEC_E_OK
,
"EncryptMessage returned %s, not SEC_E_OK.
\n
"
,
getSecError
(
sec_status
));
...
...
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