diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-19 15:50:49 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-07-20 09:17:14 +1000 |
commit | 42e40140ae4f6031987d00aaad8a08066d0abd5c (patch) | |
tree | 399ef2aeee171e2685922f7335d6ce5d6748906f /librpc/idl | |
parent | 662282106318e3f1f0bbcc7281f49ee5b3727f21 (diff) | |
download | samba-42e40140ae4f6031987d00aaad8a08066d0abd5c.tar.gz |
security.idl: Use gid_t for gid in security_unix_token
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/security.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 2f633ab0ef..57603374d1 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -580,7 +580,7 @@ interface security /* This is not yet sent over the network, but is simply defined in IDL */ typedef [public] struct { uid_t uid; - uid_t gid; + gid_t gid; uint32 ngroups; [size_is(ngroups)] gid_t groups[*]; } security_unix_token; |