# HG changeset patch # User Richard Laager # Date 1139336077 0 # Node ID b230ed49c5d1ed9cf42232b02514849c92709ef3 # Parent dc0375c4984a95d52600da310b30103209567c98 [gaim-migrate @ 15526] I was backwards on the WIN32 timezone offset. committer: Tailor Script diff -r dc0375c4984a -r b230ed49c5d1 src/util.c --- a/src/util.c Tue Feb 07 18:09:01 2006 +0000 +++ b/src/util.c Tue Feb 07 18:14:37 2006 +0000 @@ -504,7 +504,7 @@ DWORD ret; if ((ret = GetTimeZoneInformation(&tzi)) != TIME_ZONE_ID_INVALID) { - off = tzi.Bias * 60; + off = -(tzi.Bias * 60); if (ret == TIME_ZONE_ID_DAYLIGHT) off -= tzi.DaylightBias * 60; }