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
2ca7e23d
...
2ca7e23dbdf2a46ec8bddce15398975cb64273e9
authored
2001-06-20 01:39:11 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
parse822_date_time now takes a timezone argument. We don't actually use
the arguments, though.
1 parent
bf065410
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
examples/mbox-dates.c
examples/mbox-dates.c
View file @
2ca7e23
...
...
@@ -98,9 +98,8 @@ main (int argc, char **argv)
else
{
const
char
*
s
=
date
;
struct
tm
tm
;
if
(
parse822_date_time
(
&
s
,
s
+
strlen
(
s
),
&
tm
))
if
(
parse822_date_time
(
&
s
,
s
+
strlen
(
s
),
NULL
,
NULL
))
{
printf
(
"%s, msg %d: BAD DATE <%s> (mua? %s)
\n
"
,
mboxname
,
i
,
date
,
UserAgent
(
hdr
));
...
...
Please
register
or
sign in
to post a comment