diff options
author | Igor Zinkovsky <igorzi@microsoft.com> | 2012-02-27 13:16:06 -0800 |
---|---|---|
committer | Igor Zinkovsky <igorzi@microsoft.com> | 2012-02-27 13:16:06 -0800 |
commit | 70a393ea9ab34dfaedbe0a285dcf3e5c4a4c5f03 (patch) | |
tree | 23416db250233a4f1c8dbc3f2603248240c3bb21 /deps/uv/src/win/util.c | |
parent | 4f8d7328a465f1dc6cd35c875afc0d5ea6b80538 (diff) | |
download | node-new-70a393ea9ab34dfaedbe0a285dcf3e5c4a4c5f03.tar.gz |
update libuv to 9a5c1bad90
Diffstat (limited to 'deps/uv/src/win/util.c')
-rw-r--r-- | deps/uv/src/win/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deps/uv/src/win/util.c b/deps/uv/src/win/util.c index 0fcfb9c3d2..40bea97ef0 100644 --- a/deps/uv/src/win/util.c +++ b/deps/uv/src/win/util.c @@ -253,6 +253,7 @@ void uv_filetime_to_time_t(FILETIME* file_time, time_t* stat_time) { time.tm_hour = system_time.wHour; time.tm_min = system_time.wMinute; time.tm_sec = system_time.wSecond; + time.tm_isdst = -1; *stat_time = mktime(&time); } else { |