[gaim-migrate @ 17776]

Sun, 19 Nov 2006 05:56:07 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Sun, 19 Nov 2006 05:56:07 +0000
changeset 15059
73305cb095c7
parent 15058
212b71a4faf6
child 15060
a5d9fafd2b8c

[gaim-migrate @ 17776]
Properly handle conversions of UTC timestamps when they are across the DST boundary from now.

libgaim/util.c file | annotate | diff | comparison | revisions
--- a/libgaim/util.c	Sat Nov 18 05:53:07 2006 +0000
+++ b/libgaim/util.c	Sun Nov 19 05:56:07 2006 +0000
@@ -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')
 			{

mercurial