(getugroups): Take new parameter, gid.
authorJim Meyering <jim@meyering.net>
Tue, 9 Mar 1999 16:07:49 +0000 (16:07 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 9 Mar 1999 16:07:49 +0000 (16:07 +0000)
Add gid to the list of groups.
From Ulrich Drepper.

lib/getugroups.c

index afa425b6e53c43c5ad3946dc9f5ff9801648152d..01d36ff109eac5ac2c9065446c7a4a1b578ef802 100644 (file)
@@ -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 @@ struct group *getgrent ();
    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)