Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e7a4fb15
Commit
e7a4fb15
authored
Jun 19, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Improve tracing in IWbemLocator::ConnectServer.
parent
95b822d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
wbemlocator.c
dlls/wbemprox/wbemlocator.c
+8
-1
No files found.
dlls/wbemprox/wbemlocator.c
View file @
e7a4fb15
...
...
@@ -99,7 +99,7 @@ static HRESULT WINAPI wbem_locator_ConnectServer(
{
HRESULT
hr
;
FIXM
E
(
"%p, %s, %s, %s, %s, 0x%08x, %s, %p, %p)
\n
"
,
iface
,
debugstr_w
(
NetworkResource
),
debugstr_w
(
User
),
TRAC
E
(
"%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
;
...
...
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