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

@ -27,8 +27,12 @@
*/
NTSTATUS STDCALL
LsaClose(LSA_HANDLE ObjectHandle)
{
static int count = 0;
if (count++ < 20)
{
DPRINT1("(%p):LsaClose stub\n",ObjectHandle);
}
return 0xc0000000;
}
@ -216,8 +220,12 @@ LsaOpenPolicy(PLSA_UNICODE_STRING lsaucs,
PLSA_OBJECT_ATTRIBUTES lsaoa,
ACCESS_MASK access,
PLSA_HANDLE PolicyHandle)
{
static int count = 0;
if (count++ < 20)
{
DPRINT1("LsaOpenPolicy - stub\n");
}
return STATUS_SUCCESS;
}