aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util/timeutil.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-04-14 01:29:08 +0800
committerDan Winship <danw@src.gnome.org>2001-04-14 01:29:08 +0800
commit8870aff0a3691ddb58441187f292e712d3f47dc2 (patch)
treeaf44fb57e12b80cb2a27dfbc7b96d3ea28024900 /calendar/cal-util/timeutil.c
parent045c3ffbeab912e8fb0eda1c455004c372ed3eee (diff)
downloadgsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.tar
gsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.tar.gz
gsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.tar.bz2
gsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.tar.lz
gsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.tar.xz
gsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.tar.zst
gsoc2013-evolution-8870aff0a3691ddb58441187f292e712d3f47dc2.zip
Fix the syntactic bogon here, and attempt to fix the logical bogon too.
* cal-util/timeutil.c (time_from_isodate): Fix the syntactic bogon here, and attempt to fix the logical bogon too. (tm_gmtoff and timezone have opposite signs... I'm assuming Federico tested the Linux case, so I'm flipping the sign of the BSD case. But maybe he didn't and it's supposed to be the other way...) svn path=/trunk/; revision=9300
Diffstat (limited to 'calendar/cal-util/timeutil.c')
-rw-r--r--calendar/cal-util/timeutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/cal-util/timeutil.c b/calendar/cal-util/timeutil.c
index 2d769623aa..764ec5d078 100644
--- a/calendar/cal-util/timeutil.c
+++ b/calendar/cal-util/timeutil.c
@@ -97,8 +97,8 @@ time_from_isodate (const char *str)
if (len == 16) {
#if defined(HAVE_TM_GMTOFF)
- t -= my_tm.tm_gmtoff;
-#elsif defined(HAVE_TIMEZONE)
+ t += my_tm.tm_gmtoff;
+#elif defined(HAVE_TIMEZONE)
t -= timezone;
#endif
}