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) ...@@ -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)
......