Module: wine Branch: master Commit: 67e2c97a88ce75dbbe22eefcd3137bf8315786e2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=67e2c97a88ce75dbbe22eefcd3...
Author: Dan Kegel dank@kegel.com Date: Fri Apr 27 18:42:10 2007 -0700
advapi: Improve SetEntriesInAclA stub.
---
dlls/advapi32/security.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c index 80dd89f..729727f 100644 --- a/dlls/advapi32/security.c +++ b/dlls/advapi32/security.c @@ -27,7 +27,6 @@ #include "windef.h" #include "winbase.h" #include "winerror.h" -#include "rpcnterr.h" #include "winreg.h" #include "winternl.h" #include "winioctl.h" @@ -2865,7 +2864,8 @@ DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries, PACL OldAcl, PACL* NewAcl ) { FIXME("%d %p %p %p\n",count,pEntries,OldAcl,NewAcl); - return ERROR_CALL_NOT_IMPLEMENTED; + *NewAcl = NULL; + return ERROR_SUCCESS; }
/******************************************************************************