diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-04-26 21:25:28 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-04-26 21:25:28 +0000 |
commit | e6fe84427badabecb0f3b81d2f69927abc1f7dd6 (patch) | |
tree | 0d7b47e8c98b36b554863ad1a02bd7be0be3284f /mail/evolution/files | |
parent | 907385e56bf0d441e7f638954337f68c1a41ceb7 (diff) |
Notes
Diffstat (limited to 'mail/evolution/files')
-rw-r--r-- | mail/evolution/files/patch-camel_camel-mime-message.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/evolution/files/patch-camel_camel-mime-message.c b/mail/evolution/files/patch-camel_camel-mime-message.c new file mode 100644 index 000000000000..df92a52a222b --- /dev/null +++ b/mail/evolution/files/patch-camel_camel-mime-message.c @@ -0,0 +1,13 @@ +--- camel/camel-mime-message.c.orig Mon Dec 10 14:54:11 2001 ++++ camel/camel-mime-message.c Fri Apr 26 17:19:59 2002 +@@ -209,8 +209,10 @@ + tz = -local->tm_gmtoff; + #endif + offset = -(((tz/60/60) * 100) + (tz/60 % 60)); ++#if defined(HAVE_TIMEZONE) + if (local->tm_isdst>0) + offset += 100; ++#endif + } + message->date = date; + message->date_offset = offset; |