Fixed typo in #if directive.
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -181,8 +181,8 @@ mu_parse_imap_date_time (const char **p, struct tm *tm, mu_timezone *tz) | ... | @@ -181,8 +181,8 @@ mu_parse_imap_date_time (const char **p, struct tm *tm, mu_timezone *tz) |
181 | sign = (zone[0] == '-') ? -1 : +1; | 181 | sign = (zone[0] == '-') ? -1 : +1; |
182 | tzoffset = sign * (hh * 60 * 60 + mm * 60); | 182 | tzoffset = sign * (hh * 60 * 60 + mm * 60); |
183 | 183 | ||
184 | #if HAVE_STRUCT_TM_TM_GMTOFFSET | 184 | #if HAVE_STRUCT_TM_TM_GMTOFF |
185 | tm->tm_gmtoffset = tzoffset; | 185 | tm->tm_gmtoff = tzoffset; |
186 | #endif | 186 | #endif |
187 | 187 | ||
188 | if (tz) | 188 | if (tz) | ... | ... |
-
Please register or sign in to post a comment