rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier...
authorRob Shearman <rob@codeweavers.com>
Tue, 1 Apr 2008 11:48:06 +0000 (12:48 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 1 Apr 2008 17:10:48 +0000 (19:10 +0200)
dlls/rpcrt4/rpc_server.c

index 40e9e7e4e62b5b876c65b4d8d6e20dd24ddddf0a..f93d264a79ffb9812f369abaaa710ab9a02530b3 100644 (file)
@@ -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;
 }