Commit 9f3af964 authored by Ivan Leo Puoti's avatar Ivan Leo Puoti Committed by Alexandre Julliard

Improve NtCreateNamedPipe trace.

parent 35706b6b
...@@ -1836,10 +1836,10 @@ NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE handle, ULONG access, ...@@ -1836,10 +1836,10 @@ NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE handle, ULONG access,
NTSTATUS status; NTSTATUS status;
static const WCHAR leadin[] = {'\\','?','?','\\','P','I','P','E','\\'}; static const WCHAR leadin[] = {'\\','?','?','\\','P','I','P','E','\\'};
TRACE("(%p %lx %p %p %lx %ld %lx %ld %ld %ld %ld %ld %ld %p)\n", TRACE("(%p %lx %s %p %lx %ld %lx %ld %ld %ld %ld %ld %ld %p)\n",
handle, access, oa, iosb, sharing, dispo, options, pipe_type, handle, access, debugstr_w(oa->ObjectName->Buffer), iosb, sharing, dispo,
read_mode, completion_mode, max_inst, inbound_quota, outbound_quota, options, pipe_type, read_mode, completion_mode, max_inst, inbound_quota,
timeout); outbound_quota, timeout);
if (oa->ObjectName->Length < sizeof(leadin) || if (oa->ObjectName->Length < sizeof(leadin) ||
strncmpiW( oa->ObjectName->Buffer, strncmpiW( oa->ObjectName->Buffer,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment