summaryrefslogtreecommitdiff
path: root/sys/compat/linux
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-04-26 10:19:13 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-04-26 10:19:13 +0000
commit71f2eb9c6cfad8bb1c9647f92805b0fdbfdcaae2 (patch)
treed42fc29be10411f1a0227d5c1aeb361f9165c20c /sys/compat/linux
parentceb56915f8e91554edc5b0bc684933d0a78fdc23 (diff)
correct utimes() emulation
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/linux_misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index 90810df76b7..fea39e7d80c 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_misc.c,v 1.15 1998/03/22 23:33:06 millert Exp $ */
+/* $OpenBSD: linux_misc.c,v 1.16 1998/04/26 10:19:12 deraadt Exp $ */
/* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */
/*
@@ -691,7 +691,7 @@ linux_sys_utime(p, v, retval)
else
SCARG(&ua, tptr) = NULL;
- return sys_utimes(p, uap, retval);
+ return sys_utimes(p, &ua, retval);
}
/*