aboutsummaryrefslogtreecommitdiffstats
path: root/guts/setfsgid.c
blob: 0e5a10b02b85f44957a8ed56f18b083d1b2467b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_setfsgid(gid_t fsgid) {
 *	int rc = -1;
 */
	if (pseudo_euid == 0 ||
	    pseudo_egid == fsgid || pseudo_rgid == fsgid || pseudo_sgid == fsgid) {
		pseudo_fgid = fsgid;
		rc = 0;
	} else {
		rc = -1;
		errno = EPERM;
	}
/*	return rc;
 * }
 */