aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-message.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-mime-message.c')
-rw-r--r--camel/camel-mime-message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c
index b9655bec7c..3383e51ba0 100644
--- a/camel/camel-mime-message.c
+++ b/camel/camel-mime-message.c
@@ -206,7 +206,7 @@ camel_mime_message_set_date (CamelMimeMessage *message, time_t date, int offset
#if defined(HAVE_TIMEZONE)
tz = timezone;
#elif defined(HAVE_TM_GMTOFF)
- tz = local->tm_gmtoff;
+ tz = -local->tm_gmtoff;
#endif
offset = -(((tz/60/60) * 100) + (tz/60 % 60));
if (local->tm_isdst>0)