Return TIME_ZONE_ID_STANDARD in GetTimeZoneInformation().

This commit is contained in:
Rein Klazes 2000-10-31 01:01:12 +00:00 committed by Alexandre Julliard
parent 312beec840
commit 8fa528aa3f

View file

@ -161,7 +161,7 @@ DWORD WINAPI GetTimeZoneInformation(LPTIME_ZONE_INFORMATION tzinfo)
tzinfo->StandardBias = 0;
tzinfo->DaylightBias = -60;
return TIME_ZONE_ID_UNKNOWN;
return TIME_ZONE_ID_STANDARD;
}