From 44db6fc88d96e0808c4e7b866c4f60f4853b51de Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 15 Dec 2000 20:13:14 +0000 Subject: Fix the sign in the HAVE_TM_GMTOFF case * cal-util/timeutil.c (time_from_isodate): Fix the sign in the HAVE_TM_GMTOFF case svn path=/trunk/; revision=7053 --- calendar/cal-util/timeutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'calendar/cal-util/timeutil.c') diff --git a/calendar/cal-util/timeutil.c b/calendar/cal-util/timeutil.c index a718ed90f7..a2e1d7a38d 100644 --- a/calendar/cal-util/timeutil.c +++ b/calendar/cal-util/timeutil.c @@ -37,7 +37,7 @@ time_from_isodate (char *str) if (str [15] == 'Z') #if defined(HAVE_TM_GMTOFF) - t -= my_tm.tm_gmtoff + t += my_tm.tm_gmtoff #elif defined(HAVE_TIMEZONE) t -= timezone #endif -- cgit v1.2.3