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
581bf631
...
581bf6318b4fa8ea20ec014a04b375fa5ac16275
authored
2001-06-15 02:48:26 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
I think timezone info is now placed in struct tm correctly.
1 parent
e8343196
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
mailbox/parse822.c
mailbox/parse822.c
View file @
581bf63
...
...
@@ -1486,7 +1486,9 @@ int parse822_date_time(const char** p, const char* e, struct tm* tm)
tm
->
tm_min
=
min
;
tm
->
tm_sec
=
sec
;
/* TZ ? */
tm
->
tm_isdst
=
-
1
;
/* unknown whether it's dst or not */
tm
->
tm_gmtoff
=
tz
;
tm
->
tm_zone
=
tzname
;
}
return
EOK
;
...
...
Please
register
or
sign in
to post a comment