From 578d536233b62884764b3c5c6cd42077958d6a49 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Sun, 21 May 2017 01:53:00 -0500 Subject: Fix HAVE_TM_TM_GMT_OFF usage --- src/builtin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/builtin.c b/src/builtin.c index cfdd4fef..e785944c 100644 --- a/src/builtin.c +++ b/src/builtin.c @@ -1201,9 +1201,9 @@ static time_t my_mktime(struct tm *tm) { if (t == (time_t)-1) return t; #ifdef HAVE_TM_TM_GMT_OFF - return t + tm.tm_gmtoff; -#elif defined(HAVE_TM_TM_GMT_OFF) - return t + tm.__tm_gmtoff; + return t + tm->tm_gmtoff; +#elif HAVE_TM___TM_GMT_OFF + return t + tm->__tm_gmtoff; #else return (time_t)-2; /* Not supported */ #endif -- cgit v1.2.3