mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[CONSRV]: Add some DPRINT1 information.
svn path=/trunk/; revision=59901
This commit is contained in:
parent
27d8aa3aa9
commit
4f73c42009
1 changed files with 5 additions and 1 deletions
|
@ -404,7 +404,11 @@ ConSrvConnect(IN PCSR_PROCESS CsrProcess,
|
|||
ConnectionInfoLength == NULL ||
|
||||
*ConnectionInfoLength != sizeof(CONSRV_API_CONNECTINFO) )
|
||||
{
|
||||
DPRINT1("CONSRV: Connection failed\n");
|
||||
DPRINT1("CONSRV: Connection failed - ConnectionInfo = 0x%p ; ConnectionInfoLength = 0x%p (%lu), wanted %lu\n",
|
||||
ConnectionInfo,
|
||||
ConnectionInfoLength,
|
||||
ConnectionInfoLength ? *ConnectionInfoLength : (ULONG)-1,
|
||||
sizeof(CONSRV_API_CONNECTINFO));
|
||||
return STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue