From 3e36aefc66d482e5fd78b8be6c21aa116fe587c8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 26 Aug 2010 19:20:32 +1000 Subject: 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 --- source3/include/privileges.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include/privileges.h') 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 */ -- cgit