summaryrefslogtreecommitdiffstats
path: root/source/lib/privileges.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-03-22 15:39:24 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:11 -0500
commit7dfafa712deb115e425c7367296400c54827a217 (patch)
tree54509c75d79e64e1f76aa71fad8a775c8cbbc8d6 /source/lib/privileges.c
parent19a639ac468237b22f16d917c0150fbf10c9623e (diff)
downloadsamba-7dfafa712deb115e425c7367296400c54827a217.tar.gz
samba-7dfafa712deb115e425c7367296400c54827a217.tar.xz
samba-7dfafa712deb115e425c7367296400c54827a217.zip
r5953: more compiler cleanups; moved SID_LIST from smb.h to privileges.c to cleanup the name space
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;