aboutsummaryrefslogtreecommitdiffstats
path: root/ports/uids_generic/guts/seteuid.c
blob: 032e5f1e3381d25ad12d6ff37821627e3f7c5460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_seteuid(uid_t euid) {
 *	int rc = -1;
 */
	if (pseudo_euid == 0 || euid == pseudo_euid || euid == pseudo_ruid || euid == pseudo_suid) {
		pseudo_euid = euid;
		pseudo_fuid = euid;
		pseudo_client_touchuid();
		rc = 0;
	} else {
		rc = -1;
		errno = EPERM;
	}
/*	return rc;
 * }
 */