summaryrefslogtreecommitdiffstats
path: root/source/lib/privileges.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/lib/privileges.c')
-rw-r--r--source/lib/privileges.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/lib/privileges.c b/source/lib/privileges.c
index 8b5348e1f25..b60832c8d8b 100644
--- a/source/lib/privileges.c
+++ b/source/lib/privileges.c
@@ -95,7 +95,12 @@ PRIVS privs[] = {
{SE_END, "", ""}
};
-typedef struct priv_sid_list {
+typedef struct {
+ int count;
+ DOM_SID *list;
+} SID_LIST;
+
+typedef struct {
SE_PRIV privilege;
SID_LIST sids;
} PRIV_SID_LIST;