Commit 45b6706a authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

server: Use ACL_REVISION in create_default_dacl instead of MAX_ACL_REVISION…

server: Use ACL_REVISION in create_default_dacl instead of MAX_ACL_REVISION since we don't use any features from later ACL revisions.
parent 5356bfde
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment