# HG changeset patch # User Richard Laager # Date 1163915767 0 # Node ID fee45b614eb7ce834c9ddf57dca7c9bb42598f92 # Parent 33ac3c591b4a42bf9da900c6eb1b5b7a2c5de89a [gaim-migrate @ 17776] Properly handle conversions of UTC timestamps when they are across the DST boundary from now. committer: Tailor Script diff -r 33ac3c591b4a -r fee45b614eb7 libgaim/util.c --- 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') {