From c7f9b9347fdf7a073329d9b3fada993c2ea74717 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Tue, 1 Apr 2008 12:48:06 +0100 Subject: [PATCH] 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 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.33.8