mailing list of musl libc
 help / color / mirror / code / Atom feed
922a958142b0ad7b1f331f30725ecec29b91a309 blob 255 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
 
#define _GNU_SOURCE
#include <grp.h>
#include <limits.h>

int initgroups(const char *user, gid_t gid)
{
	gid_t groups[NGROUPS_MAX];
	int count = NGROUPS_MAX;
	if (getgrouplist(user, gid, groups, &count) < 0) return -1;
	return setgroups(count, groups);
}
debug log:

solving 922a9581 ...
found 922a9581 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).