summaryrefslogtreecommitdiffstats
path: root/src/H5Omtime.c
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2001-04-11 22:12:22 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2001-04-11 22:12:22 (GMT)
commit209dfbd01ca6592e52cb13d9ea6e410c77a45d78 (patch)
treeba546db126de18b678124ccce31958ce72fd1a95 /src/H5Omtime.c
parentc75ca861ec932edc3b0301b81567d9dc72949599 (diff)
downloadhdf5-209dfbd01ca6592e52cb13d9ea6e410c77a45d78.zip
hdf5-209dfbd01ca6592e52cb13d9ea6e410c77a45d78.tar.gz
hdf5-209dfbd01ca6592e52cb13d9ea6e410c77a45d78.tar.bz2
[svn-r3799]
Purpose: a bug fix Description: forget considering daylight factor for mtime test on windows platform Solution: adding daylight factor in this file Platforms tested: windows 2000, confirmed at eirene
Diffstat (limited to 'src/H5Omtime.c')
-rw-r--r--src/H5Omtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Omtime.c b/src/H5Omtime.c
index 6cc92c9..12b5049 100644
--- a/src/H5Omtime.c
+++ b/src/H5Omtime.c
@@ -154,7 +154,7 @@ H5O_mtime_decode(H5F_t UNUSED *f, const uint8_t *p,
tz = timebuffer.timezone;
- the_time -=tz*60;
+ the_time -=tz*60-3600*_daylight;
}