diff options
Diffstat (limited to 'camel/camel-mime-message.c')
-rw-r--r-- | camel/camel-mime-message.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c index c75b83b77f..4851771e43 100644 --- a/camel/camel-mime-message.c +++ b/camel/camel-mime-message.c @@ -191,13 +191,14 @@ camel_mime_message_set_date(CamelMimeMessage *message, time_t date, int offset) date = time(0); local = localtime(&date); - offset = 0; #if defined(HAVE_TIMEZONE) tz = timezone; #elif defined(HAVE_TM_GMTOFF) tz = local->tm_gmtoff; #endif - offset = ((tz/60/60) * 100) + (tz/60 % 60); + offset = -(((tz/60/60) * 100) + (tz/60 % 60)); + if (local->tm_isdst>0) + offset += 100; } message->date = date; message->date_offset = offset; |