mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 14:53:09 +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 == NULL ||
|
||||||
*ConnectionInfoLength != sizeof(CONSRV_API_CONNECTINFO) )
|
*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;
|
return STATUS_UNSUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue