diff options
author | 2002-03-10 03:34:35 +0000 | |
---|---|---|
committer | 2002-03-10 03:34:35 +0000 | |
commit | 5193b3873480d183375ef13efd3d51db54a6b892 (patch) | |
tree | 84e1da62f55fd71a7f6bd990cd784a4535d3466d | |
parent | Be less parochial and remember that others may need to use quirks! (diff) | |
download | wireguard-openbsd-5193b3873480d183375ef13efd3d51db54a6b892.tar.xz wireguard-openbsd-5193b3873480d183375ef13efd3d51db54a6b892.zip |
call inittodr() to avoid reseting the clock; problem reported in tech@.
millert@ ok.
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 018a4ab2404..354295c5bb0 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vfsops.c,v 1.28 2002/01/25 04:50:20 fgsch Exp $ */ +/* $OpenBSD: cd9660_vfsops.c,v 1.29 2002/03/10 03:34:35 fgsch Exp $ */ /* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */ /*- @@ -123,6 +123,7 @@ cd9660_mountroot() simple_unlock(&mountlist_slock); (void)cd9660_statfs(mp, &mp->mnt_stat, p); vfs_unbusy(mp, p); + inittodr(0); return (0); } |