summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2002-03-10 03:34:35 +0000
committerfgsch <fgsch@openbsd.org>2002-03-10 03:34:35 +0000
commit5193b3873480d183375ef13efd3d51db54a6b892 (patch)
tree84e1da62f55fd71a7f6bd990cd784a4535d3466d
parentBe less parochial and remember that others may need to use quirks! (diff)
downloadwireguard-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.c3
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);
}