advapi: Improve SetEntriesInAclA stub.

This commit is contained in:
Dan Kegel 2007-04-27 18:42:10 -07:00 committed by Alexandre Julliard
parent 552c225949
commit 67e2c97a88
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,6 @@
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "winerror.h" #include "winerror.h"
#include "rpcnterr.h"
#include "winreg.h" #include "winreg.h"
#include "winternl.h" #include "winternl.h"
#include "winioctl.h" #include "winioctl.h"
@ -2865,7 +2864,8 @@ DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries,
PACL OldAcl, PACL* NewAcl ) PACL OldAcl, PACL* NewAcl )
{ {
FIXME("%d %p %p %p\n",count,pEntries,OldAcl,NewAcl); FIXME("%d %p %p %p\n",count,pEntries,OldAcl,NewAcl);
return ERROR_CALL_NOT_IMPLEMENTED; *NewAcl = NULL;
return ERROR_SUCCESS;
} }
/****************************************************************************** /******************************************************************************