summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
-rw-r--r--sys/compat/linux/linux_misc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index 30262a7c8b0..80e6d63fa82 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_misc.c,v 1.35 2001/04/02 21:43:11 niklas Exp $ */
+/* $OpenBSD: linux_misc.c,v 1.36 2001/07/03 15:32:34 jasoni Exp $ */
/* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */
/*
@@ -1219,12 +1219,12 @@ linux_sys_personality(p, v, retval)
* The calls are here because of type conversions.
*/
int
-linux_sys_setreuid(p, v, retval)
+linux_sys_setreuid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_setreuid_args /* {
+ struct linux_sys_setreuid16_args /* {
syscallarg(int) ruid;
syscallarg(int) euid;
} */ *uap = v;
@@ -1239,12 +1239,12 @@ linux_sys_setreuid(p, v, retval)
}
int
-linux_sys_setregid(p, v, retval)
+linux_sys_setregid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_setregid_args /* {
+ struct linux_sys_setregid16_args /* {
syscallarg(int) rgid;
syscallarg(int) egid;
} */ *uap = v;
@@ -1311,12 +1311,12 @@ linux_sys___sysctl(p, v, retval)
}
int
-linux_sys_setresuid(p, v, retval)
+linux_sys_setresuid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_setresuid_args /* {
+ struct linux_sys_setresuid16_args /* {
syscallarg(uid_t) ruid;
syscallarg(uid_t) euid;
syscallarg(uid_t) suid;