diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1997-10-06 14:57:25 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1997-10-06 14:57:25 +0000 |
commit | 9edf2581c6553b9af6c80d28f1027b44776020d3 (patch) | |
tree | e1a7b2c7b8994d846aff3afe7d6210b1524fda6d /sys/compat/common/kern_info_09.c | |
parent | da9d52f5837a5d21230fdb6406204160a6eee497 (diff) |
VFS Lite 2 Changes
Diffstat (limited to 'sys/compat/common/kern_info_09.c')
-rw-r--r-- | sys/compat/common/kern_info_09.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/common/kern_info_09.c b/sys/compat/common/kern_info_09.c index e0e568c5186..9616e00260e 100644 --- a/sys/compat/common/kern_info_09.c +++ b/sys/compat/common/kern_info_09.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_info_09.c,v 1.3 1996/03/03 05:26:22 mickey Exp $ */ +/* $OpenBSD: kern_info_09.c,v 1.4 1997/10/06 14:56:36 csapuntz Exp $ */ /* $NetBSD: kern_info_09.c,v 1.5 1996/02/21 00:10:59 cgd Exp $ */ /* @@ -127,6 +127,7 @@ compat_09_sys_uname(p, v, retval) *dp++ = *cp; *dp = '\0'; strncpy(outsname.machine, MACHINE, sizeof(outsname.machine)); + return (copyout((caddr_t)&outsname, (caddr_t)SCARG(uap, name), sizeof(struct outsname))); } |