From 42e40140ae4f6031987d00aaad8a08066d0abd5c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 19 Jul 2011 15:50:49 +1000 Subject: [PATCH] security.idl: Use gid_t for gid in security_unix_token --- librpc/idl/security.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 2f633ab0eff..57603374d11 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; -- 2.34.1