Author: hbelusca
Date: Sat Feb 8 22:30:45 2014
New Revision: 62061
URL:
http://svn.reactos.org/svn/reactos?rev=62061&view=rev
Log:
[CONSRV]
Silence a DPRINT.
Modified:
trunk/reactos/win32ss/user/winsrv/consrv/handle.c
trunk/reactos/win32ss/user/winsrv/consrv_new/handle.c
Modified: trunk/reactos/win32ss/user/winsrv/consrv/handle.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/winsrv/consrv…
==============================================================================
--- trunk/reactos/win32ss/user/winsrv/consrv/handle.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/winsrv/consrv/handle.c [iso-8859-1] Sat Feb 8 22:30:45
2014
@@ -435,8 +435,8 @@
/*(Type != 0 && ObjectEntry->Type != Type)*/
(Type != 0 && (ObjectEntry->Type & Type) == 0) )
{
- DPRINT1("ConSrvGetObject -- Invalid handle 0x%x of type %lu with access %lu
; retrieved object 0x%x (handle 0x%x) of type %lu with access %lu\n",
- Handle, Type, Access, ObjectEntry, HandleEntry, (ObjectEntry ?
ObjectEntry->Type : 0), (HandleEntry ? HandleEntry->Access : 0));
+ DPRINT("ConSrvGetObject -- Invalid handle 0x%x of type %lu with access %lu ;
retrieved object 0x%x (handle 0x%x) of type %lu with access %lu\n",
+ Handle, Type, Access, ObjectEntry, HandleEntry, (ObjectEntry ?
ObjectEntry->Type : 0), (HandleEntry ? HandleEntry->Access : 0));
RtlLeaveCriticalSection(&ProcessData->HandleTableLock);
return STATUS_INVALID_HANDLE;
Modified: trunk/reactos/win32ss/user/winsrv/consrv_new/handle.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/winsrv/consrv…
==============================================================================
--- trunk/reactos/win32ss/user/winsrv/consrv_new/handle.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/winsrv/consrv_new/handle.c [iso-8859-1] Sat Feb 8 22:30:45
2014
@@ -438,8 +438,8 @@
/*(Type != 0 && ObjectEntry->Type != Type)*/
(Type != 0 && (ObjectEntry->Type & Type) == 0) )
{
- DPRINT1("ConSrvGetObject -- Invalid handle 0x%x of type %lu with access %lu
; retrieved object 0x%x (handle 0x%x) of type %lu with access %lu\n",
- Handle, Type, Access, ObjectEntry, HandleEntry, (ObjectEntry ?
ObjectEntry->Type : 0), (HandleEntry ? HandleEntry->Access : 0));
+ DPRINT("ConSrvGetObject -- Invalid handle 0x%x of type %lu with access %lu ;
retrieved object 0x%x (handle 0x%x) of type %lu with access %lu\n",
+ Handle, Type, Access, ObjectEntry, HandleEntry, (ObjectEntry ?
ObjectEntry->Type : 0), (HandleEntry ? HandleEntry->Access : 0));
RtlLeaveCriticalSection(&ProcessData->HandleTableLock);
return STATUS_INVALID_HANDLE;