server: Use ACL_REVISION in create_default_dacl instead of MAX_ACL_REVISION since we don't use any features from later ACL revisions.

This commit is contained in:
Rob Shearman 2007-10-02 15:57:02 +01:00 committed by Alexandre Julliard
parent 5356bfde2c
commit 45b6706a32
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ static ACL *create_default_dacl( const SID *user )
default_dacl = mem_alloc( default_dacl_size );
if (!default_dacl) return NULL;
default_dacl->AclRevision = MAX_ACL_REVISION;
default_dacl->AclRevision = ACL_REVISION;
default_dacl->Sbz1 = 0;
default_dacl->AclSize = default_dacl_size;
default_dacl->AceCount = 2;