From: <rl...@us...> - 2006-11-19 05:56:08
|
Revision: 17776 http://svn.sourceforge.net/gaim/?rev=17776&view=rev Author: rlaager Date: 2006-11-18 21:56:07 -0800 (Sat, 18 Nov 2006) Log Message: ----------- Properly handle conversions of UTC timestamps when they are across the DST boundary from now. Modified Paths: -------------- trunk/libgaim/util.c Modified: trunk/libgaim/util.c =================================================================== --- trunk/libgaim/util.c 2006-11-18 05:53:07 UTC (rev 17775) +++ trunk/libgaim/util.c 2006-11-19 05:56:07 UTC (rev 17776) @@ -791,6 +791,10 @@ * if we know the UTC offset already. */ t->tm_isdst = 0; } + else if (utc) + { + t->tm_isdst = 0; + } if (rest != NULL && *c != '\0') { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |