summaryrefslogtreecommitdiffstats
path: root/src/H5Omtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Omtime.c')
-rw-r--r--src/H5Omtime.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Omtime.c b/src/H5Omtime.c
index ee19d56..5cd4ea6 100644
--- a/src/H5Omtime.c
+++ b/src/H5Omtime.c
@@ -154,7 +154,10 @@ H5O_mtime_decode(H5F_t UNUSED *f, const uint8_t *p,
ftime(&timebuffer);
tz = timebuffer.timezone;
- the_time -= tz * 60 - 3600 * _daylight;
+ /* daylight is not handled properly. Currently we just hard-code
+ the problem. */
+ the_time -= tz*60;
+ /*the_time -= tz * 60 - 3600 * _daylight;*/
}
#else
/*