Silence two debug messages after they have cried a little bit.

svn path=/trunk/; revision=17780
This commit is contained in:
Hartmut Birr 2005-09-10 15:30:21 +00:00
parent 10dac7250e
commit f8c9d4f80f

View file

@ -28,7 +28,11 @@
NTSTATUS STDCALL
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;
}
@ -217,7 +221,11 @@ LsaOpenPolicy(PLSA_UNICODE_STRING lsaucs,
ACCESS_MASK access,
PLSA_HANDLE PolicyHandle)
{
DPRINT1("LsaOpenPolicy - stub\n");
static int count = 0;
if (count++ < 20)
{
DPRINT1("LsaOpenPolicy - stub\n");
}
return STATUS_SUCCESS;
}