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
23e41f6c
...
23e41f6cc9134f5cac18219f79e7ea65248baa95
authored
2006-01-22 22:34:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_parse822_time): Assume UTC for invalid or unknown timezones.
1 parent
605c3795
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/parse822.c
mailbox/parse822.c
View file @
23e41f6
...
...
@@ -1639,8 +1639,8 @@ mu_parse822_time (const char **p, const char *e,
}
else
if
(
strlen
(
zone
)
>
5
||
strlen
(
zone
)
<
4
)
{
str_free
(
&
zone
);
return
EPARSE
;
if
(
*
tz
)
*
tz
=
0
;
/* Assume UTC */
}
else
{
...
...
Please
register
or
sign in
to post a comment