summaryrefslogtreecommitdiffstats
path: root/sys/fs/msdosfs/msdosfs_conv.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2006-10-02 18:23:37 +0000
committerphk <phk@FreeBSD.org>2006-10-02 18:23:37 +0000
commit638e020bc6857faa5fda80000dcd6c68e81077b3 (patch)
tree3489b6aebb6a369a6ddad98553ec18fdc627975e /sys/fs/msdosfs/msdosfs_conv.c
parent5d888a06551915d7b826dd6177fc33ea8deb877d (diff)
downloadFreeBSD-src-638e020bc6857faa5fda80000dcd6c68e81077b3.zip
FreeBSD-src-638e020bc6857faa5fda80000dcd6c68e81077b3.tar.gz
Use utc_offset() where applicable, and hide the internals of it
as static variables.
Diffstat (limited to 'sys/fs/msdosfs/msdosfs_conv.c')
-rw-r--r--sys/fs/msdosfs/msdosfs_conv.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/fs/msdosfs/msdosfs_conv.c b/sys/fs/msdosfs/msdosfs_conv.c
index 21836f2..c9dee48 100644
--- a/sys/fs/msdosfs/msdosfs_conv.c
+++ b/sys/fs/msdosfs/msdosfs_conv.c
@@ -55,7 +55,7 @@
#include <sys/clock.h>
#include <sys/kernel.h> /* defines tz */
#include <sys/systm.h>
-#include <machine/clock.h>
+#include <sys/clock.h>
#include <sys/dirent.h>
#include <sys/iconv.h>
#include <sys/mount.h>
@@ -127,8 +127,7 @@ unix2dostime(tsp, ddp, dtp, dhp)
* If the time from the last conversion is the same as now, then
* skip the computations and use the saved result.
*/
- t = tsp->tv_sec - (tz_minuteswest * 60)
- - (wall_cmos_clock ? adjkerntz : 0);
+ t = tsp->tv_sec - utc_offset();
/* - daylight savings time correction */
t &= ~1;
if (lasttime != t) {
@@ -239,8 +238,7 @@ dos2unixtime(dd, dt, dh, tsp)
days += ((dd & DD_DAY_MASK) >> DD_DAY_SHIFT) - 1;
lastseconds = (days * 24 * 60 * 60) + SECONDSTO1980;
}
- tsp->tv_sec = seconds + lastseconds + (tz_minuteswest * 60)
- + adjkerntz;
+ tsp->tv_sec = seconds + lastseconds + utc_offset();
/* + daylight savings time correction */
tsp->tv_nsec = (dh % 100) * 10000000;
}
OpenPOWER on IntegriCloud