summaryrefslogtreecommitdiff
path: root/source3/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
commit0d579953042b5c361ead51f57957accb3706e3f0 (patch)
treeb4d8fb546b091a3a268b14fe0271a4f015bf75fd /source3/lib/privileges.c
parent4b831f8e16d305666b0f2b018c35f5427efc21cc (diff)
downloadsamba-0d579953042b5c361ead51f57957accb3706e3f0.tar.gz
samba-0d579953042b5c361ead51f57957accb3706e3f0.tar.bz2
samba-0d579953042b5c361ead51f57957accb3706e3f0.zip
r5953: more compiler cleanups; moved SID_LIST from smb.h to privileges.c to cleanup the name space
(This used to be commit 7dfafa712deb115e425c7367296400c54827a217)
Diffstat (limited to 'source3/lib/privileges.c')
-rw-r--r--source3/lib/privileges.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/lib/privileges.c b/source3/lib/privileges.c
index 8b5348e1f2..b60832c8d8 100644
--- a/source3/lib/privileges.c
+++ b/source3/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;