Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
2b726c82
...
2b726c82b2e5e403784c23e36749f9ee053aa829
authored
2002-09-25 14:23:16 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed typo in #if directive.
1 parent
73533169
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
2b726c8
...
...
@@ -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_GMTOFF
SET
tm
->
tm_gmtoff
set
=
tzoffset
;
#if HAVE_STRUCT_TM_TM_GMTOFF
tm
->
tm_gmtoff
=
tzoffset
;
#endif
if
(
tz
)
...
...
Please
register
or
sign in
to post a comment