diff options
| author | 2015-09-13 17:08:03 +0000 | |
|---|---|---|
| committer | 2015-09-13 17:08:03 +0000 | |
| commit | fd0d94125fc39ac46246dabf4783aa3ff259e0aa (patch) | |
| tree | 8c365b1b9bbde6d78ad107779fc638e2b917dcda /sys/compat/linux/linux_misc.c | |
| parent | Since a major bump of libcrypto is coming, remove OPENSSL_ia32cap and (diff) | |
| download | wireguard-openbsd-fd0d94125fc39ac46246dabf4783aa3ff259e0aa.tar.xz wireguard-openbsd-fd0d94125fc39ac46246dabf4783aa3ff259e0aa.zip | |
Rename __sysctl syscall to just sysctl, as the userland wrapper is no longer
necessary
ok deraadt@ jsing@
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
| -rw-r--r-- | sys/compat/linux/linux_misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index be01c8a1516..a55274f1245 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.94 2015/05/07 08:53:32 mpi Exp $ */ +/* $OpenBSD: linux_misc.c,v 1.95 2015/09/13 17:08:03 guenther Exp $ */ /* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */ /*- @@ -1453,7 +1453,7 @@ linux_sys___sysctl(p, v, retval) syscallarg(struct linux___sysctl *) lsp; } */ *uap = v; struct linux___sysctl ls; - struct sys___sysctl_args bsa; + struct sys_sysctl_args bsa; int error; if ((error = copyin(SCARG(uap, lsp), &ls, sizeof ls))) @@ -1465,7 +1465,7 @@ linux_sys___sysctl(p, v, retval) SCARG(&bsa, new) = ls.new; SCARG(&bsa, newlen) = ls.newlen; - return sys___sysctl(p, &bsa, retval); + return sys_sysctl(p, &bsa, retval); } /* |
