diff options
author | marcel <marcel@FreeBSD.org> | 1999-08-12 19:53:33 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-08-12 19:53:33 +0000 |
commit | 3e18cc5fc9b7df6f643049d0e22df34b1c600992 (patch) | |
tree | 1d60ae6850595dd2d53b6b94afb64e68494cc437 /sys/i386/linux/linux_sysent.c | |
parent | 0fdfbcb26fcbbbc9307c76219303fa31833e0d4a (diff) | |
download | FreeBSD-src-3e18cc5fc9b7df6f643049d0e22df34b1c600992.zip FreeBSD-src-3e18cc5fc9b7df6f643049d0e22df34b1c600992.tar.gz |
Use a wrapper for the link syscall that does name translations.
PR: 12749
Submitted by: Boris Nikolaus <boris@cs.tu-berlin.de>
Diffstat (limited to 'sys/i386/linux/linux_sysent.c')
-rw-r--r-- | sys/i386/linux/linux_sysent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_sysent.c b/sys/i386/linux/linux_sysent.c index fa39fd1..a03bd95 100644 --- a/sys/i386/linux/linux_sysent.c +++ b/sys/i386/linux/linux_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.17 1999/08/11 13:29:48 marcel Exp + * created from Id: syscalls.master,v 1.18 1999/08/12 19:51:03 marcel Exp */ #include "opt_compat.h" @@ -23,7 +23,7 @@ struct sysent linux_sysent[] = { { 1, (sy_call_t *)close }, /* 6 = close */ { 3, (sy_call_t *)linux_waitpid }, /* 7 = linux_waitpid */ { 2, (sy_call_t *)linux_creat }, /* 8 = linux_creat */ - { 2, (sy_call_t *)link }, /* 9 = link */ + { 2, (sy_call_t *)linux_link }, /* 9 = linux_link */ { 1, (sy_call_t *)linux_unlink }, /* 10 = linux_unlink */ { 3, (sy_call_t *)linux_execve }, /* 11 = linux_execve */ { 1, (sy_call_t *)linux_chdir }, /* 12 = linux_chdir */ |