Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3acc6242
Commit
3acc6242
authored
Nov 05, 2006
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Remove unnecessary quotes in traces, as debugstr_a and debugstr_w add them instead.
parent
5daafc73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+2
-2
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
3acc6242
...
...
@@ -138,7 +138,7 @@ RPC_STATUS RPCRT4_CreateBindingW(RpcBinding** Binding, BOOL server, LPWSTR Prots
RPC_STATUS
RPCRT4_CompleteBindingA
(
RpcBinding
*
Binding
,
LPSTR
NetworkAddr
,
LPSTR
Endpoint
,
LPSTR
NetworkOptions
)
{
TRACE
(
"(RpcBinding == ^%p, NetworkAddr ==
\"
%s
\"
, EndPoint ==
\"
%s
\"
, NetworkOptions ==
\"
%s
\"
)
\n
"
,
Binding
,
TRACE
(
"(RpcBinding == ^%p, NetworkAddr ==
%s, EndPoint == %s, NetworkOptions == %s
)
\n
"
,
Binding
,
debugstr_a
(
NetworkAddr
),
debugstr_a
(
Endpoint
),
debugstr_a
(
NetworkOptions
));
RPCRT4_strfree
(
Binding
->
NetworkAddr
);
...
...
@@ -156,7 +156,7 @@ RPC_STATUS RPCRT4_CompleteBindingA(RpcBinding* Binding, LPSTR NetworkAddr, LPST
RPC_STATUS
RPCRT4_CompleteBindingW
(
RpcBinding
*
Binding
,
LPWSTR
NetworkAddr
,
LPWSTR
Endpoint
,
LPWSTR
NetworkOptions
)
{
TRACE
(
"(RpcBinding == ^%p, NetworkAddr ==
\"
%s
\"
, EndPoint ==
\"
%s
\"
, NetworkOptions ==
\"
%s
\"
)
\n
"
,
Binding
,
TRACE
(
"(RpcBinding == ^%p, NetworkAddr ==
%s, EndPoint == %s, NetworkOptions == %s
)
\n
"
,
Binding
,
debugstr_w
(
NetworkAddr
),
debugstr_w
(
Endpoint
),
debugstr_w
(
NetworkOptions
));
RPCRT4_strfree
(
Binding
->
NetworkAddr
);
...
...
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