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
06dd3efe
Commit
06dd3efe
authored
Nov 21, 2006
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: RPC_C_AUTHN_LEVEL_NONE and RPC_C_AUTHN_LEVEL_DEFAULT are
handled at the binding level now instead of the message level, so remove this special handling in RPCRT4_Send.
parent
20c53a77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
rpc_message.c
dlls/rpcrt4/rpc_message.c
+1
-4
No files found.
dlls/rpcrt4/rpc_message.c
View file @
06dd3efe
...
...
@@ -563,10 +563,7 @@ RPC_STATUS RPCRT4_Send(RpcConnection *Connection, RpcPktHdr *Header,
RPC_STATUS
r
;
SecBuffer
out
;
if
(
!
Connection
->
AuthInfo
||
Connection
->
AuthInfo
->
AuthnLevel
==
RPC_C_AUTHN_LEVEL_DEFAULT
||
Connection
->
AuthInfo
->
AuthnLevel
==
RPC_C_AUTHN_LEVEL_NONE
||
SecIsValidHandle
(
&
Connection
->
ctx
))
if
(
!
Connection
->
AuthInfo
||
SecIsValidHandle
(
&
Connection
->
ctx
))
{
return
RPCRT4_SendAuth
(
Connection
,
Header
,
Buffer
,
BufferLength
,
NULL
,
0
);
}
...
...
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