Kai Blin : rpcrt4: Fix some A/W use in error messages.

Alexandre Julliard julliard at winehq.org
Mon Jun 23 07:36:05 CDT 2008


Module: wine
Branch: master
Commit: a3bd1f86350b2f9a43e038fbb41ffc94c0c89eda
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a3bd1f86350b2f9a43e038fbb41ffc94c0c89eda

Author: Kai Blin <kai.blin at gmail.com>
Date:   Mon Jun 23 09:51:47 2008 +0200

rpcrt4: Fix some A/W use in error messages.

---

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

diff --git a/dlls/rpcrt4/rpc_binding.c b/dlls/rpcrt4/rpc_binding.c
index 500e5f8..b29ab13 100644
--- a/dlls/rpcrt4/rpc_binding.c
+++ b/dlls/rpcrt4/rpc_binding.c
@@ -1542,7 +1542,7 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName,
   r = EnumerateSecurityPackagesW(&package_count, &packages);
   if (r != SEC_E_OK)
   {
-    ERR("EnumerateSecurityPackagesA failed with error 0x%08x\n", r);
+    ERR("EnumerateSecurityPackagesW failed with error 0x%08x\n", r);
     return RPC_S_SEC_PKG_ERROR;
   }
 
@@ -1587,7 +1587,7 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName,
   }
   else
   {
-    ERR("AcquireCredentialsHandleA failed with error 0x%08x\n", r);
+    ERR("AcquireCredentialsHandleW failed with error 0x%08x\n", r);
     return RPC_S_SEC_PKG_ERROR;
   }
 }




More information about the wine-cvs mailing list