Commit 2b726c82 2b726c82b2e5e403784c23e36749f9ee053aa829 by Sergey Poznyakoff

Fixed typo in #if directive.

1 parent 73533169
......@@ -181,8 +181,8 @@ mu_parse_imap_date_time (const char **p, struct tm *tm, mu_timezone *tz)
sign = (zone[0] == '-') ? -1 : +1;
tzoffset = sign * (hh * 60 * 60 + mm * 60);
#if HAVE_STRUCT_TM_TM_GMTOFFSET
tm->tm_gmtoffset = tzoffset;
#if HAVE_STRUCT_TM_TM_GMTOFF
tm->tm_gmtoff = tzoffset;
#endif
if (tz)
......