From 8bd7f1ecc572ff4589c6d6183b3d7a83e10c8b7f Mon Sep 17 00:00:00 2001 From: ocean Date: Thu, 2 Mar 2006 04:01:31 +0000 Subject: * win32/win32.c (filetime_to_unixtime): should set tm_isdst to -1. stat() didn't treat daylight saving time property on WinNT. [ruby-talk:182100] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10011 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/win32.c | 1 + 1 file changed, 1 insertion(+) (limited to 'win32/win32.c') diff --git a/win32/win32.c b/win32/win32.c index f51e93e30a..b817cdf4ea 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2879,6 +2879,7 @@ filetime_to_unixtime(const FILETIME *ft) tm.tm_hour = st.wHour; tm.tm_min = st.wMinute; tm.tm_sec = st.wSecond; + tm.tm_isdst = -1; t = mktime(&tm); return t == -1 ? 0 : t; } -- cgit v1.2.3