diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-14 13:26:35 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-08-18 09:30:08 +1000 |
commit | e229f68b3e8f146d5dfa4ab57f126cc7ea5c7214 (patch) | |
tree | c2875b1836f0a881228cd9ceeeb0317fc1ceb6cb /source4/libcli/security/security.h | |
parent | 26ff85893437c2c762972ed2eb542c6cfe1bb049 (diff) | |
download | samba-e229f68b3e8f146d5dfa4ab57f126cc7ea5c7214.tar.gz samba-e229f68b3e8f146d5dfa4ab57f126cc7ea5c7214.tar.xz samba-e229f68b3e8f146d5dfa4ab57f126cc7ea5c7214.zip |
s4:security Bring in #defines for the user and primary group token location
This will allow us to stop duplicating the user and primary group SID in the
struct security_token, and therefore make it more like the NT_USER_TOKEN
in Samba3.
Andrew Bartlett
Diffstat (limited to 'source4/libcli/security/security.h')
-rw-r--r-- | source4/libcli/security/security.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/libcli/security/security.h b/source4/libcli/security/security.h index 585170ed61c..236096560c1 100644 --- a/source4/libcli/security/security.h +++ b/source4/libcli/security/security.h @@ -22,6 +22,9 @@ #include "librpc/gen_ndr/security.h" +#define PRIMARY_USER_SID_INDEX 0 +#define PRIMARY_GROUP_SID_INDEX 1 + enum security_user_level { SECURITY_ANONYMOUS = 0, SECURITY_USER = 10, |