summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_misc.c
diff options
context:
space:
mode:
authorjasoni <jasoni@openbsd.org>2001-07-03 21:56:26 +0000
committerjasoni <jasoni@openbsd.org>2001-07-03 21:56:26 +0000
commit529c7b03923eb70827b0717a766d7311198654df (patch)
tree09cc0ad69553ab57bb65fec6b217bfd89171cec7 /sys/compat/linux/linux_misc.c
parentMerge in pdksh-5.2.14-patches.2 to fix some problems with propagated (diff)
downloadwireguard-openbsd-529c7b03923eb70827b0717a766d7311198654df.tar.xz
wireguard-openbsd-529c7b03923eb70827b0717a766d7311198654df.zip
rename 2 more syscalls to syscallname16 (missed last time)
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
-rw-r--r--sys/compat/linux/linux_misc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index 80e6d63fa82..648d4c29919 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.36 2001/07/03 15:32:34 jasoni Exp $ */
+/* $OpenBSD: linux_misc.c,v 1.37 2001/07/03 21:56:26 jasoni Exp $ */
/* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */
/*
@@ -211,12 +211,12 @@ linux_sys_wait4(p, v, retval)
}
int
-linux_sys_setresgid(p, v, retval)
+linux_sys_setresgid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_setresgid_args /* {
+ struct linux_sys_setresgid16_args /* {
syscallarg(gid_t) rgid;
syscallarg(gid_t) egid;
syscallarg(gid_t) sgid;
@@ -278,12 +278,12 @@ linux_sys_setresgid(p, v, retval)
}
int
-linux_sys_getresgid(p, v, retval)
+linux_sys_getresgid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_getresgid_args /* {
+ struct linux_sys_getresgid16_args /* {
syscallarg(gid_t *) rgid;
syscallarg(gid_t *) egid;
syscallarg(gid_t *) sgid;