http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
772f3af
)
rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier...
author
Rob Shearman
<rob@codeweavers.com>
Tue, 1 Apr 2008 11:48:06 +0000
(12:48 +0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Tue, 1 Apr 2008 17:10:48 +0000
(19:10 +0200)
dlls/rpcrt4/rpc_server.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/rpcrt4/rpc_server.c
b/dlls/rpcrt4/rpc_server.c
index 40e9e7e4e62b5b876c65b4d8d6e20dd24ddddf0a..f93d264a79ffb9812f369abaaa710ab9a02530b3 100644
(file)
--- a/
dlls/rpcrt4/rpc_server.c
+++ b/
dlls/rpcrt4/rpc_server.c
@@
-138,7
+138,9
@@
static RpcServerInterface* RPCRT4_find_interface(UUID* object,
}
LeaveCriticalSection(&server_cs);
if (&cif->entry == &server_interfaces) cif = NULL;
- TRACE("returning %p for %s\n", cif, debugstr_guid(object));
+ TRACE("returning %p for object %s, if_id { %d.%d %s }\n", cif,
+ debugstr_guid(object), if_id->SyntaxVersion.MajorVersion,
+ if_id->SyntaxVersion.MinorVersion, debugstr_guid(&if_id->SyntaxGUID));
return cif;
}