summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1997-01-26 23:54:07 +0000
committerJason Downs <downsj@cvs.openbsd.org>1997-01-26 23:54:07 +0000
commitbedb3fc84e9a1ef3cc9c47d674ff6a6de666e0c6 (patch)
treee091550ad5279d113293960552a2524e8393eb76
parent07d86f3f786aca8e72529feaf931052d8078b70e (diff)
Regen.
-rw-r--r--sys/compat/sunos/sunos_syscall.h4
-rw-r--r--sys/compat/sunos/sunos_syscallargs.h4
-rw-r--r--sys/compat/sunos/sunos_syscalls.c4
-rw-r--r--sys/compat/sunos/sunos_sysent.c6
-rw-r--r--sys/compat/ultrix/ultrix_syscall.h4
-rw-r--r--sys/compat/ultrix/ultrix_syscallargs.h4
-rw-r--r--sys/compat/ultrix/ultrix_syscalls.c4
-rw-r--r--sys/compat/ultrix/ultrix_sysent.c6
8 files changed, 18 insertions, 18 deletions
diff --git a/sys/compat/sunos/sunos_syscall.h b/sys/compat/sunos/sunos_syscall.h
index f1f9518267b..66f7107d64c 100644
--- a/sys/compat/sunos/sunos_syscall.h
+++ b/sys/compat/sunos/sunos_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp
*/
#define SUNOS_SYS_syscall 0
@@ -21,7 +21,7 @@
/* 13 is obsolete time */
#define SUNOS_SYS_mknod 14
#define SUNOS_SYS_chmod 15
-#define SUNOS_SYS_chown 16
+#define SUNOS_SYS_lchown 16
#define SUNOS_SYS_break 17
/* 18 is obsolete stat */
#define SUNOS_SYS_lseek 19
diff --git a/sys/compat/sunos/sunos_syscallargs.h b/sys/compat/sunos/sunos_syscallargs.h
index 95630c8f9df..d219212252f 100644
--- a/sys/compat/sunos/sunos_syscallargs.h
+++ b/sys/compat/sunos/sunos_syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -224,7 +224,7 @@ int sunos_sys_execv __P((struct proc *, void *, register_t *));
int sys_chdir __P((struct proc *, void *, register_t *));
int sunos_sys_mknod __P((struct proc *, void *, register_t *));
int sys_chmod __P((struct proc *, void *, register_t *));
-int sys_chown __P((struct proc *, void *, register_t *));
+int sys_lchown __P((struct proc *, void *, register_t *));
int sys_obreak __P((struct proc *, void *, register_t *));
int compat_43_sys_lseek __P((struct proc *, void *, register_t *));
int sys_getpid __P((struct proc *, void *, register_t *));
diff --git a/sys/compat/sunos/sunos_syscalls.c b/sys/compat/sunos/sunos_syscalls.c
index 49cffe1746f..4eda2341117 100644
--- a/sys/compat/sunos/sunos_syscalls.c
+++ b/sys/compat/sunos/sunos_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp
*/
char *sunos_syscallnames[] = {
@@ -22,7 +22,7 @@ char *sunos_syscallnames[] = {
"#13 (obsolete time)", /* 13 = obsolete time */
"mknod", /* 14 = mknod */
"chmod", /* 15 = chmod */
- "chown", /* 16 = chown */
+ "lchown", /* 16 = lchown */
"break", /* 17 = break */
"#18 (obsolete stat)", /* 18 = obsolete stat */
"lseek", /* 19 = lseek */
diff --git a/sys/compat/sunos/sunos_sysent.c b/sys/compat/sunos/sunos_sysent.c
index c787c19bdfd..8c18c333929 100644
--- a/sys/compat/sunos/sunos_sysent.c
+++ b/sys/compat/sunos/sunos_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp
*/
#include <sys/param.h>
@@ -67,8 +67,8 @@ struct sysent sunos_sysent[] = {
sunos_sys_mknod }, /* 14 = mknod */
{ 2, s(struct sys_chmod_args),
sys_chmod }, /* 15 = chmod */
- { 3, s(struct sys_chown_args),
- sys_chown }, /* 16 = chown */
+ { 3, s(struct sys_lchown_args),
+ sys_lchown }, /* 16 = lchown */
{ 1, s(struct sys_obreak_args),
sys_obreak }, /* 17 = break */
{ 0, 0,
diff --git a/sys/compat/ultrix/ultrix_syscall.h b/sys/compat/ultrix/ultrix_syscall.h
index 6c17dea49b2..2ca4cec9099 100644
--- a/sys/compat/ultrix/ultrix_syscall.h
+++ b/sys/compat/ultrix/ultrix_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp
*/
#define ULTRIX_SYS_syscall 0
@@ -21,7 +21,7 @@
/* 13 is obsolete time */
#define ULTRIX_SYS_mknod 14
#define ULTRIX_SYS_chmod 15
-#define ULTRIX_SYS_chown 16
+#define ULTRIX_SYS_lchown 16
#define ULTRIX_SYS_break 17
/* 18 is obsolete stat */
#define ULTRIX_SYS_lseek 19
diff --git a/sys/compat/ultrix/ultrix_syscallargs.h b/sys/compat/ultrix/ultrix_syscallargs.h
index 85b3392a682..4e11eed4a8a 100644
--- a/sys/compat/ultrix/ultrix_syscallargs.h
+++ b/sys/compat/ultrix/ultrix_syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -192,7 +192,7 @@ int ultrix_sys_execv __P((struct proc *, void *, register_t *));
int sys_chdir __P((struct proc *, void *, register_t *));
int ultrix_sys_mknod __P((struct proc *, void *, register_t *));
int sys_chmod __P((struct proc *, void *, register_t *));
-int sys_chown __P((struct proc *, void *, register_t *));
+int sys_lchown __P((struct proc *, void *, register_t *));
int sys_obreak __P((struct proc *, void *, register_t *));
int compat_43_sys_lseek __P((struct proc *, void *, register_t *));
int sys_getpid __P((struct proc *, void *, register_t *));
diff --git a/sys/compat/ultrix/ultrix_syscalls.c b/sys/compat/ultrix/ultrix_syscalls.c
index 49c3af11d18..4d35997b8f5 100644
--- a/sys/compat/ultrix/ultrix_syscalls.c
+++ b/sys/compat/ultrix/ultrix_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp
*/
char *ultrix_syscallnames[] = {
@@ -22,7 +22,7 @@ char *ultrix_syscallnames[] = {
"#13 (obsolete time)", /* 13 = obsolete time */
"mknod", /* 14 = mknod */
"chmod", /* 15 = chmod */
- "chown", /* 16 = chown */
+ "lchown", /* 16 = lchown */
"break", /* 17 = break */
"#18 (obsolete stat)", /* 18 = obsolete stat */
"lseek", /* 19 = lseek */
diff --git a/sys/compat/ultrix/ultrix_sysent.c b/sys/compat/ultrix/ultrix_sysent.c
index b26d8940ab5..c577c7a44fa 100644
--- a/sys/compat/ultrix/ultrix_sysent.c
+++ b/sys/compat/ultrix/ultrix_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp
*/
#include <sys/param.h>
@@ -65,8 +65,8 @@ struct sysent ultrix_sysent[] = {
ultrix_sys_mknod }, /* 14 = mknod */
{ 2, s(struct sys_chmod_args),
sys_chmod }, /* 15 = chmod */
- { 3, s(struct sys_chown_args),
- sys_chown }, /* 16 = chown */
+ { 3, s(struct sys_lchown_args),
+ sys_lchown }, /* 16 = lchown */
{ 1, s(struct sys_obreak_args),
sys_obreak }, /* 17 = break */
{ 0, 0,