X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgroup-member.c;h=065f4d8bb9537c1b6fe2a5869402d8dd7d2ea37e;hb=a19e601b42a86b59b4af13aa9f960397f5306c38;hp=05b1bc0d783f81c04a38df944bfefeffc35d5556;hpb=2c5d56e26027133aaef449e8b7219fec2e543430;p=gnulib.git diff --git a/lib/group-member.c b/lib/group-member.c index 05b1bc0d7..065f4d8bb 100644 --- a/lib/group-member.c +++ b/lib/group-member.c @@ -1,5 +1,5 @@ /* group-member.c -- determine whether group id is in calling user's group list - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1997 Free Software Foundation, Inc. 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 @@ -12,22 +12,22 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H -#include +# include #endif #include #include #ifdef STDC_HEADERS -#include +# include #endif #ifdef HAVE_UNISTD_H -#include +# include #endif #include "group-member.h" @@ -44,15 +44,14 @@ struct group_info #ifdef HAVE_GETGROUPS static void -free_group_info (g) - struct group_info *g; +free_group_info (struct group_info *g) { free (g->group); free (g); } static struct group_info * -get_group_info () +get_group_info (void) { int n_groups; int n_group_slots; @@ -96,8 +95,7 @@ get_group_info () either of the current or effective group IDs. */ int -group_member (gid) - gid_t gid; +group_member (gid_t gid) { #ifndef HAVE_GETGROUPS return ((gid == getgid ()) || (gid == getegid ())); @@ -120,7 +118,7 @@ group_member (gid) break; } } - + free_group_info (gi); return found;