Commit 7381858e authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

include: Fix definition name.

parent 1aa35bea
...@@ -4041,7 +4041,7 @@ typedef struct _ACL_SIZE_INFORMATION ...@@ -4041,7 +4041,7 @@ typedef struct _ACL_SIZE_INFORMATION
#define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001 #define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
#define SE_PRIVILEGE_ENABLED 0x00000002 #define SE_PRIVILEGE_ENABLED 0x00000002
#define SE_PRIVILEGE_REMOVE 0x00000004 #define SE_PRIVILEGE_REMOVED 0x00000004
#define SE_PRIVILEGE_USED_FOR_ACCESS 0x80000000 #define SE_PRIVILEGE_USED_FOR_ACCESS 0x80000000
#define PRIVILEGE_SET_ALL_NECESSARY 1 #define PRIVILEGE_SET_ALL_NECESSARY 1
......
...@@ -724,7 +724,7 @@ static unsigned int token_adjust_privileges( struct token *token, const LUID_AND ...@@ -724,7 +724,7 @@ static unsigned int token_adjust_privileges( struct token *token, const LUID_AND
continue; continue;
} }
if (privs[i].Attributes & SE_PRIVILEGE_REMOVE) if (privs[i].Attributes & SE_PRIVILEGE_REMOVED)
privilege_remove( privilege ); privilege_remove( privilege );
else else
{ {
......
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