group-member: omit unnecessary dependencies
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 12 Oct 2012 20:10:12 +0000 (13:10 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 12 Oct 2012 20:11:48 +0000 (13:11 -0700)
commit4af1990a0902f5914f582bade9d1aa843a291f5a
tree070a23ac1bd000bbed18610baf97b7f0bf3bcd8c
parent0b95481ce5bd62e3150f0e94a1e3ce3a38fc5b0a
group-member: omit unnecessary dependencies

This is for Emacs, which has its own allocator and where we
don't want to use xalloc.
* lib/group-member.c: Include xalloc-oversized.h, not xalloc.h,
since we no longer use xmalloc.  Do not include stdbool.h, since
the changes below happen to remove the only use of bool.
(GROUPBUF_SIZE): New constant.
(struct group_info): Remove n_groups member.  Add groupbuf member.
This lets us get the groups without using malloc, usually.
(free_group_info, get_group_info): Adjust to this.
(get_group_info): Return the number of groups found, or -1 on error.
Use plain malloc not xmalloc, and treat its failure as if there
are no groups, as the user already loses in case of error.
(group_member): Simplify, based on changes to get_group_info.
* modules/group-member (Depends-on): Remove dependencies on
xalloc and stdbool.  Add dependency on xalloc-oversized.
ChangeLog
lib/group-member.c
modules/group-member