netapi32: Make access_mask_to_samba() static.

This commit is contained in:
Francois Gouget 2013-12-09 09:38:51 +01:00 committed by Alexandre Julliard
parent f5b2988bb0
commit 8b5ec5bb49
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ static unsigned char ace_flags_to_samba( BYTE flags )
#define GENERIC_WRITE_ACCESS (1 << 30)
#define GENERIC_READ_ACCESS (1 << 31)
unsigned int access_mask_to_samba( DWORD mask )
static unsigned int access_mask_to_samba( DWORD mask )
{
static const DWORD known_rights =
GENERIC_ALL | GENERIC_EXECUTE | GENERIC_WRITE | GENERIC_READ;