--- wine/dlls/msvcrt/time.c 2004-10-26 08:25:33.000000000 +0200 +++ mywine/dlls/msvcrt/time.c 2004-10-27 11:11:06.000000000 +0200 @@ -124,11 +124,10 @@ struct MSVCRT_tm* MSVCRT_localtime(const tzid = GetTimeZoneInformation(&tzinfo); - if (tzid == TIME_ZONE_ID_UNKNOWN || tzid == TIME_ZONE_ID_INVALID) { + if (tzid == TIME_ZONE_ID_INVALID) tm.tm_isdst = -1; - } else { + else tm.tm_isdst = (tzid == TIME_ZONE_ID_DAYLIGHT?1:0); - } return &tm; }