1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

security.idl: Use gid_t for gid in security_unix_token

This commit is contained in:
Andrew Bartlett 2011-07-19 15:50:49 +10:00
parent 6622821063
commit 42e40140ae

View File

@ -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;