summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-07-19 15:50:49 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-07-20 09:17:14 +1000
commit42e40140ae4f6031987d00aaad8a08066d0abd5c (patch)
tree399ef2aeee171e2685922f7335d6ce5d6748906f /librpc
parent662282106318e3f1f0bbcc7281f49ee5b3727f21 (diff)
downloadsamba-42e40140ae4f6031987d00aaad8a08066d0abd5c.tar.gz
samba-42e40140ae4f6031987d00aaad8a08066d0abd5c.tar.bz2
samba-42e40140ae4f6031987d00aaad8a08066d0abd5c.zip
security.idl: Use gid_t for gid in security_unix_token
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/security.idl2
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;