diff options
| author | 1998-04-26 10:19:12 +0000 | |
|---|---|---|
| committer | 1998-04-26 10:19:12 +0000 | |
| commit | a43ff784d16cfc9a92c1a936ad63218c4b020db8 (patch) | |
| tree | 61e24c506147abd3ec12e8d70cea1da6422f5de3 /sys/compat/linux/linux_misc.c | |
| parent | use correct db pointer; fair (diff) | |
| download | wireguard-openbsd-a43ff784d16cfc9a92c1a936ad63218c4b020db8.tar.xz wireguard-openbsd-a43ff784d16cfc9a92c1a936ad63218c4b020db8.zip | |
correct utimes() emulation
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
| -rw-r--r-- | sys/compat/linux/linux_misc.c | 4 |
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); } /* |
