Author: hbelusca Date: Fri Aug 30 11:36:22 2013 New Revision: 59901
URL: http://svn.reactos.org/svn/reactos?rev=59901&view=rev Log: [CONSRV]: Add some DPRINT1 information.
Modified: trunk/reactos/win32ss/user/winsrv/consrv/init.c
Modified: trunk/reactos/win32ss/user/winsrv/consrv/init.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/winsrv/consrv/... ============================================================================== --- trunk/reactos/win32ss/user/winsrv/consrv/init.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/user/winsrv/consrv/init.c [iso-8859-1] Fri Aug 30 11:36:22 2013 @@ -404,7 +404,11 @@ 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; }