diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-26 22:49:27 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-11 18:46:06 +1000 |
commit | cae7babb1fcfbb0655bc1f7f6be51212f3d13c69 (patch) | |
tree | 1334dadf1ecec11b505f982f9cb5da484fbdbec5 /source3/include | |
parent | 25b0da5c532bbaee819fe239217e2d2f2c81a6c6 (diff) | |
download | samba-cae7babb1fcfbb0655bc1f7f6be51212f3d13c69.tar.gz samba-cae7babb1fcfbb0655bc1f7f6be51212f3d13c69.tar.bz2 samba-cae7babb1fcfbb0655bc1f7f6be51212f3d13c69.zip |
s3-privs Rename structure elements for greater clarity
It is important to make clear which is the LUID and which
is the Samba-only bitmap mask.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/privileges.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/privileges.h b/source3/include/privileges.h index aa04d42fd0..0bc085c166 100644 --- a/source3/include/privileges.h +++ b/source3/include/privileges.h @@ -65,10 +65,10 @@ typedef struct { } PRIVILEGE_SET; typedef struct { - uint64_t se_priv; + uint64_t privilege_mask; const char *name; const char *description; - uint32_t luid; + enum sec_privilege luid; } PRIVS; #endif /* PRIVILEGES_H */ |