summaryrefslogtreecommitdiff
path: root/lib/group-member.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/group-member.c')
-rw-r--r--lib/group-member.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/group-member.c b/lib/group-member.c
index 4b9d43704..900c6c846 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, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1997, 1998, 2003 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
@@ -67,8 +67,7 @@ get_group_info (void)
while (n_groups == n_group_slots)
{
n_group_slots += 64;
- group = (GETGROUPS_T *) xrealloc (group,
- n_group_slots * sizeof (GETGROUPS_T));
+ group = xrealloc (group, n_group_slots * sizeof (GETGROUPS_T));
n_groups = getgroups (n_group_slots, group);
}
@@ -79,7 +78,7 @@ get_group_info (void)
return NULL;
}
- gi = (struct group_info *) xmalloc (sizeof (*gi));
+ gi = xmalloc (sizeof (*gi));
gi->n_groups = n_groups;
gi->group = group;