blob: ef9bc10a3a8bb732dfe14dd3415427331032aee8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sys/types.h>
#include <unistd.h>
#include <grp.h>
#include <limits.h>
int getgrouplist(const char *, gid_t, gid_t *, int *);
int setgroups(size_t, const gid_t *);
int initgroups(const char *user, gid_t gid)
{
gid_t groups[NGROUPS_MAX];
int count;
if (getgrouplist(user, gid, groups, &count) < 0) return -1;
return setgroups(count, groups);
}
|