summaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorMasao Uebayashi <uebayasi@cvs.openbsd.org>2014-09-18 02:15:05 +0000
committerMasao Uebayashi <uebayasi@cvs.openbsd.org>2014-09-18 02:15:05 +0000
commit08b7e4ce36c15b7aecac4bb60e35a89bacc74867 (patch)
tree98ab15c72a5acfbe98e4f75f62de4b9aa8df5dd4 /sys/kern/syscalls.master
parentba8b3f3e32dcd258742a04aeb1b32c1a6510c4e6 (diff)
Correct argument name (int flags -> int amode) in sys_access().
OK guenther@
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index a29e2200ff7..1190119445c 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.146 2014/09/17 19:26:06 millert Exp $
+; $OpenBSD: syscalls.master,v 1.147 2014/09/18 02:15:04 uebayasi Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -101,7 +101,7 @@
socklen_t *alen); }
32 STD { int sys_getsockname(int fdes, struct sockaddr *asa, \
socklen_t *alen); }
-33 STD { int sys_access(const char *path, int flags); }
+33 STD { int sys_access(const char *path, int amode); }
34 STD { int sys_chflags(const char *path, u_int flags); }
35 STD { int sys_fchflags(int fd, u_int flags); }
36 STD { void sys_sync(void); }