mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 07:56:59 +00:00
Silence two debug messages after they have cried a little bit.
svn path=/trunk/; revision=17780
This commit is contained in:
parent
10dac7250e
commit
f8c9d4f80f
1 changed files with 10 additions and 2 deletions
|
@ -28,7 +28,11 @@
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
LsaClose(LSA_HANDLE ObjectHandle)
|
LsaClose(LSA_HANDLE ObjectHandle)
|
||||||
{
|
{
|
||||||
DPRINT1("(%p):LsaClose stub\n",ObjectHandle);
|
static int count = 0;
|
||||||
|
if (count++ < 20)
|
||||||
|
{
|
||||||
|
DPRINT1("(%p):LsaClose stub\n",ObjectHandle);
|
||||||
|
}
|
||||||
return 0xc0000000;
|
return 0xc0000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -217,7 +221,11 @@ LsaOpenPolicy(PLSA_UNICODE_STRING lsaucs,
|
||||||
ACCESS_MASK access,
|
ACCESS_MASK access,
|
||||||
PLSA_HANDLE PolicyHandle)
|
PLSA_HANDLE PolicyHandle)
|
||||||
{
|
{
|
||||||
DPRINT1("LsaOpenPolicy - stub\n");
|
static int count = 0;
|
||||||
|
if (count++ < 20)
|
||||||
|
{
|
||||||
|
DPRINT1("LsaOpenPolicy - stub\n");
|
||||||
|
}
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue