Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
d95e58ba
Commit
d95e58ba
authored
Dec 15, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Avoid test failures on win9x.
parent
fb1fada9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
server.c
dlls/rpcrt4/tests/server.c
+11
-5
No files found.
dlls/rpcrt4/tests/server.c
View file @
d95e58ba
...
...
@@ -1337,11 +1337,6 @@ s_authinfo_test(unsigned int protseq, int secure)
if
(
secure
||
protseq
==
RPC_PROTSEQ_LRPC
)
{
status
=
RpcImpersonateClient
(
NULL
);
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
status
=
RpcRevertToSelf
();
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
status
=
RpcBindingInqAuthClientA
(
binding
,
&
privs
,
&
principal
,
&
level
,
&
authnsvc
,
NULL
);
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
ok
(
privs
!=
(
RPC_AUTHZ_HANDLE
)
0xdeadbeef
,
"privs unchanged
\n
"
);
...
...
@@ -1365,6 +1360,17 @@ s_authinfo_test(unsigned int protseq, int secure)
}
ok
(
level
==
RPC_C_AUTHN_LEVEL_PKT_PRIVACY
,
"level unchanged
\n
"
);
ok
(
authnsvc
==
RPC_C_AUTHN_WINNT
,
"authnsvc unchanged
\n
"
);
status
=
RpcImpersonateClient
(
NULL
);
if
(
status
==
RPC_S_CANNOT_SUPPORT
)
{
win_skip
(
"RpcImpersonateClient not supported
\n
"
);
return
;
}
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
status
=
RpcRevertToSelf
();
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
}
else
{
...
...
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