[1/8] wbemprox: Improve tracing in IWbemLocator::ConnectServer.

Hans Leidekker hans at codeweavers.com
Tue Jun 19 03:19:03 CDT 2012


---
 dlls/wbemprox/wbemlocator.c |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dlls/wbemprox/wbemlocator.c b/dlls/wbemprox/wbemlocator.c
index 4368db3..b80e080 100644
--- a/dlls/wbemprox/wbemlocator.c
+++ b/dlls/wbemprox/wbemlocator.c
@@ -99,7 +99,7 @@ static HRESULT WINAPI wbem_locator_ConnectServer(
 {
     HRESULT hr;
 
-    FIXME("%p, %s, %s, %s, %s, 0x%08x, %s, %p, %p)\n", iface, debugstr_w(NetworkResource), debugstr_w(User),
+    TRACE("%p, %s, %s, %s, %s, 0x%08x, %s, %p, %p)\n", iface, debugstr_w(NetworkResource), debugstr_w(User),
           debugstr_w(Password), debugstr_w(Locale), SecurityFlags, debugstr_w(Authority), pCtx, ppNamespace);
 
     if (((NetworkResource[0] == '\\' && NetworkResource[1] == '\\') ||
@@ -108,6 +108,13 @@ static HRESULT WINAPI wbem_locator_ConnectServer(
         FIXME("remote computer not supported\n");
         return WBEM_E_TRANSPORT_FAILURE;
     }
+    if (User || Password || Authority)
+        FIXME("authentication not supported\n");
+    if (Locale)
+        FIXME("specific locale not supported\n");
+    if (SecurityFlags)
+        FIXME("unsupported flags\n");
+
     hr = WbemServices_create( NULL, (void **)ppNamespace );
     if (SUCCEEDED( hr ))
         return WBEM_NO_ERROR;
-- 
1.7.10







More information about the wine-patches mailing list