aboutsummaryrefslogtreecommitdiffstats
path: root/mail/evolution/files
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2001-12-08 03:02:56 +0800
committerMaxim Sobolev <sobomax@FreeBSD.org>2001-12-08 03:02:56 +0800
commite4623b87630f0b7d457ba22f711c81bd26839ab5 (patch)
tree4d53c2e6974b524002090c6d5847383b16af01a5 /mail/evolution/files
parent47571fae0a5cbca38ae2de1951c661ad33588121 (diff)
downloadfreebsd-ports-gnome-e4623b87630f0b7d457ba22f711c81bd26839ab5.tar.gz
freebsd-ports-gnome-e4623b87630f0b7d457ba22f711c81bd26839ab5.tar.zst
freebsd-ports-gnome-e4623b87630f0b7d457ba22f711c81bd26839ab5.zip
Fix a bug in local timezone handling. Bump PORTREVISION.
Submitted by: Gary Geisbert <geisbert@code1200.nrl.navy.mil>
Diffstat (limited to 'mail/evolution/files')
-rw-r--r--mail/evolution/files/patch-camel::camel-mime-message.c14
1 files changed, 14 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..2f19696c5b1e
--- /dev/null
+++ b/mail/evolution/files/patch-camel::camel-mime-message.c
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- camel/camel-mime-message.c 2001/12/07 18:58:45 1.1
++++ camel/camel-mime-message.c 2001/12/07 18:59:18
+@@ -206,7 +206,7 @@
+ #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)