mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:33:01 +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
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue