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
1912fcea
Commit
1912fcea
authored
May 12, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Forward RpcBindingSetAuthInfo to RpcBindingSetAuthInfoEx.
parent
6e3223eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+5
-5
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
1912fcea
...
...
@@ -1023,11 +1023,11 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, unsigned short *ServerPrin
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
unsigned
char
*
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
)
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
)
{
FIXM
E
(
"%p %s %lu %lu %p %lu
\n
"
,
Binding
,
debugstr_a
((
const
char
*
)
ServerPrincName
),
TRAC
E
(
"%p %s %lu %lu %p %lu
\n
"
,
Binding
,
debugstr_a
((
const
char
*
)
ServerPrincName
),
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
);
return
R
PC_S_OK
;
return
R
pcBindingSetAuthInfoExA
(
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
,
NULL
)
;
}
/***********************************************************************
...
...
@@ -1037,9 +1037,9 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcBindingSetAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
unsigned
short
*
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
)
{
FIXM
E
(
"%p %s %lu %lu %p %lu
\n
"
,
Binding
,
debugstr_w
((
const
WCHAR
*
)
ServerPrincName
),
TRAC
E
(
"%p %s %lu %lu %p %lu
\n
"
,
Binding
,
debugstr_w
((
const
WCHAR
*
)
ServerPrincName
),
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
);
return
R
PC_S_OK
;
return
R
pcBindingSetAuthInfoExW
(
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
,
NULL
)
;
}
/***********************************************************************
...
...
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