summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-08-26 19:20:32 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-09-11 18:46:05 +1000
commit3e36aefc66d482e5fd78b8be6c21aa116fe587c8 (patch)
tree7b0ec3ae1f0a854be5fa392da816667b95ae2dcd /source3/include
parent9abfd8fe3bf4fd3bfae34e7b621369d3f67cf73c (diff)
downloadsamba-3e36aefc66d482e5fd78b8be6c21aa116fe587c8.tar.gz
samba-3e36aefc66d482e5fd78b8be6c21aa116fe587c8.tar.bz2
samba-3e36aefc66d482e5fd78b8be6c21aa116fe587c8.zip
s3-privs Only store low bits of luid in privileges table
Samba only uses the low bits, and this makes the code simpler. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/privileges.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/privileges.h b/source3/include/privileges.h
index f8a8735cbf..aa04d42fd0 100644
--- a/source3/include/privileges.h
+++ b/source3/include/privileges.h
@@ -68,7 +68,7 @@ typedef struct {
uint64_t se_priv;
const char *name;
const char *description;
- struct lsa_LUID luid;
+ uint32_t luid;
} PRIVS;
#endif /* PRIVILEGES_H */