Mike McCormack : rpcrt4: Forward RpcBindingSetAuthInfo to RpcBindingSetAuthInfoEx.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 15 07:34:28 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 1912fceab6b89774cbe0a25db3fb38260a0ee2dc
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=1912fceab6b89774cbe0a25db3fb38260a0ee2dc

Author: Mike McCormack <mike at codeweavers.com>
Date:   Fri May 12 19:19:48 2006 +0900

rpcrt4: Forward RpcBindingSetAuthInfo to RpcBindingSetAuthInfoEx.

---

 dlls/rpcrt4/rpc_binding.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/rpcrt4/rpc_binding.c b/dlls/rpcrt4/rpc_binding.c
index 5991eee..219b2ee 100644
--- a/dlls/rpcrt4/rpc_binding.c
+++ b/dlls/rpcrt4/rpc_binding.c
@@ -1023,11 +1023,11 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HA
  */
 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 )
 {
-    FIXME("%p %s %lu %lu %p %lu\n", Binding, debugstr_a((const char*)ServerPrincName),
+    TRACE("%p %s %lu %lu %p %lu\n", Binding, debugstr_a((const char*)ServerPrincName),
           AuthnLevel, AuthnSvc, AuthIdentity, AuthzSvr);
-    return RPC_S_OK;
+    return RpcBindingSetAuthInfoExA(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 )
 {
-    FIXME("%p %s %lu %lu %p %lu\n", Binding, debugstr_w((const WCHAR*)ServerPrincName),
+    TRACE("%p %s %lu %lu %p %lu\n", Binding, debugstr_w((const WCHAR*)ServerPrincName),
           AuthnLevel, AuthnSvc, AuthIdentity, AuthzSvr);
-    return RPC_S_OK;
+    return RpcBindingSetAuthInfoExW(Binding, ServerPrincName, AuthnLevel, AuthnSvc, AuthIdentity, AuthzSvr, NULL);
 }
 
 /***********************************************************************




More information about the wine-cvs mailing list