diff options
author | 2011-07-14 23:32:08 +0000 | |
---|---|---|
committer | 2011-07-14 23:32:08 +0000 | |
commit | d122fae10231d9a8ddc277383553b949a49ceb84 (patch) | |
tree | 9dbd1978b6ce4e9ebf87b2ad8765f142905fedb8 | |
parent | Add support for AT_REMOVEDIR to unlinkat(2), and switch sys_rmdir() to (diff) | |
download | wireguard-openbsd-d122fae10231d9a8ddc277383553b949a49ceb84.tar.xz wireguard-openbsd-d122fae10231d9a8ddc277383553b949a49ceb84.zip |
Fix entry 84 to use the same prototype for linux_sys_lstat() as entry
107 does (i.e., using a pointer to "struct linux_stat" rather than a
pointer to "struct stat43").
No binary change: entry 84 is "NOARGS" so the prototype only goes into
a comment in linux_syscall.h.
-rw-r--r-- | sys/compat/linux/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index c70f97cf30c..65543709275 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.60 2011/07/09 00:10:52 deraadt Exp $ + $OpenBSD: syscalls.master,v 1.61 2011/07/14 23:32:08 matthew Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -155,7 +155,7 @@ 82 STD { int linux_sys_oldselect(struct linux_select *lsp); } 83 STD { int linux_sys_symlink(char *path, char *to); } 84 NOARGS { int linux_sys_lstat(char *path, \ - struct stat43 *up); } olstat + struct linux_stat *up); } olstat 85 STD { int linux_sys_readlink(char *name, char *buf, \ int count); } 86 STD { int linux_sys_uselib(char *path); } |