# HG changeset patch # User Jim Meyering # Date 920995669 0 # Node ID 05413a4755ee900f139654fa5df511d27e838c73 # Parent 03d2d4430bf23d473670f1b1a9541ee76ed8bcda (getugroups): Take new parameter, gid. Add gid to the list of groups. From Ulrich Drepper. diff --git a/lib/getugroups.c b/lib/getugroups.c --- a/lib/getugroups.c +++ b/lib/getugroups.c @@ -1,5 +1,5 @@ /* getugroups.c -- return a list of the groups a user is in - Copyright (C) 1990, 1991, 1998 Free Software Foundation. + Copyright (C) 1990, 1991, 1998, 1999 Free Software Foundation. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -45,12 +45,16 @@ the current process. */ int -getugroups (int maxcount, GETGROUPS_T *grouplist, char *username) +getugroups (int maxcount, GETGROUPS_T *grouplist, char *username, gid_t gid) { struct group *grp; register char **cp; register int count = 0; + if (maxcount != 0) + grouplist[count] = gid; + ++count; + setgrent (); while ((grp = getgrent ()) != 0) for (cp = grp->gr_mem; *cp; ++cp)