From 8a81d07bde58da7350135b4ed13d52573cb33059 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 2 Feb 2004 20:59:46 +0000 Subject: [PATCH] Fix stupid cut&paste bug. svn path=/trunk/; revision=8001 --- reactos/ntoskrnl/se/acl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/se/acl.c b/reactos/ntoskrnl/se/acl.c index 65946a0c55b..b31a26473a3 100644 --- a/reactos/ntoskrnl/se/acl.c +++ b/reactos/ntoskrnl/se/acl.c @@ -1,4 +1,4 @@ -/* $Id: acl.c,v 1.16 2004/02/02 12:05:41 ekohl Exp $ +/* $Id: acl.c,v 1.17 2004/02/02 20:59:46 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -319,8 +319,8 @@ RtlCreateAcl(PACL Acl, { return(STATUS_BUFFER_TOO_SMALL); } - if (Acl->AclRevision < MIN_ACL_REVISION || - Acl->AclRevision > MAX_ACL_REVISION) + if (AclRevision < MIN_ACL_REVISION || + AclRevision > MAX_ACL_REVISION) { return(STATUS_UNKNOWN_REVISION); }