mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix seteuid(2) calling sys_geteuid rather than sys_seteuid.
This commit is contained in:
parent
3163f4600d
commit
aa9f642df2
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <unistd.h>
|
||||
|
||||
DEFN_SYSCALL1(uid_t, sys_seteuid, SYSCALL_GETEUID, uid_t);
|
||||
DEFN_SYSCALL1(uid_t, sys_seteuid, SYSCALL_SETEUID, uid_t);
|
||||
|
||||
extern "C" int seteuid(uid_t euid)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue