Module: wine Branch: master Commit: e7a4fb15731e612f466bb2b13a35e9402d0c951d URL: http://source.winehq.org/git/wine.git/?a=commit;h=e7a4fb15731e612f466bb2b13a...
Author: Hans Leidekker hans@codeweavers.com Date: Tue Jun 19 10:19:03 2012 +0200
wbemprox: Improve tracing in IWbemLocator::ConnectServer.
---
dlls/wbemprox/wbemlocator.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-)
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;