Module: wine Branch: master Commit: c7f9b9347fdf7a073329d9b3fada993c2ea74717 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c7f9b9347fdf7a073329d9b3fa...
Author: Rob Shearman rob@codeweavers.com Date: Tue Apr 1 12:48:06 2008 +0100
rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier data as well as the object guid.
---
dlls/rpcrt4/rpc_server.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c index 40e9e7e..f93d264 100644 --- 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; }