LINUX: Fix afs_linux_pag_to_groups signature

"new" is a struct group_info**, not a struct group_info*

Change-Id: I606afce74be6820b99b151b6077cf23d06e8e2d6
Reviewed-on: http://gerrit.openafs.org/5648
Reviewed-by: Derrick Brashear <shadow@dementix.org>
Tested-by: Derrick Brashear <shadow@dementix.org>
This commit is contained in:
Andrew Deason 2011-10-21 15:05:06 -05:00 committed by Derrick Brashear
parent ee2fbffb04
commit 6cb6bcc208

View File

@ -87,7 +87,7 @@ afs_linux_pag_from_groups(struct group_info *group_info) {
static inline void static inline void
afs_linux_pag_to_groups(afs_uint32 newpag, afs_linux_pag_to_groups(afs_uint32 newpag,
struct group_info *old, struct group_info *new) { struct group_info *old, struct group_info **new) {
int need_space = 0; int need_space = 0;
int i; int i;
gid_t g0; gid_t g0;