From: Rob Shearman Date: Tue, 1 Apr 2008 11:48:06 +0000 (+0100) Subject: rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier... X-Git-Tag: wine-0.9.59~135 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=c7f9b9347fdf7a073329d9b3fada993c2ea74717;p=wine%2Feterwine.git rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier data as well as the object guid. --- diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c index 40e9e7e4e6..f93d264a79 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; }