diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2002-12-13 16:25:51 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2002-12-13 16:25:51 (GMT) |
commit | 1c0e435421c64f550040a2d34e63535e69dfcfb2 (patch) | |
tree | a6e69987fcdbc1f2cf62540d750f321988ab48d0 /src/H5Omtime.c | |
parent | ae1e58baeab79e06a94d23b57231beb604762738 (diff) | |
download | hdf5-1c0e435421c64f550040a2d34e63535e69dfcfb2.zip hdf5-1c0e435421c64f550040a2d34e63535e69dfcfb2.tar.gz hdf5-1c0e435421c64f550040a2d34e63535e69dfcfb2.tar.bz2 |
[svn-r6202]
Purpose:
Fix bugs for windows platform.
Description:
1. Update HDlseek for windows
2. Update H5Otime.c for normal time(non-daylight time)
3. Add H5_DLL in front of two functions so that windows DLL can work.
Solution:
Platforms tested:
windows 2000, eirene(since most updates have WIN32 around it, not need to test other platforms)
Misc. update:
Update MANIFEST if you add or remove any file.
Update release_docs/RELEASE for bug fixes, new features, etc.
Update applicable document files too.
Diffstat (limited to 'src/H5Omtime.c')
-rw-r--r-- | src/H5Omtime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Omtime.c b/src/H5Omtime.c index c8fcf5a..e31dece 100644 --- a/src/H5Omtime.c +++ b/src/H5Omtime.c @@ -149,8 +149,8 @@ H5O_mtime_decode(H5F_t UNUSED *f, const uint8_t *p, tz = timebuffer.timezone; /* daylight is not handled properly. Currently we just hard-code the problem. */ - /*the_time -= tz*60;*/ - the_time -= tz * 60 - 3600 * _daylight; + the_time -= tz*60; +/* the_time -= tz * 60 - 3600 * _daylight;*/ } #else /* |