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
d66ace08
...
d66ace08ef4e4c92e8ab382fc30442d9724345bf
authored
2006-05-17 09:50:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_action_send): Use %z instead of %Z to form Date header.
1 parent
a9bb18a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mh/send.c
mh/send.c
View file @
d66ace0
...
...
@@ -456,7 +456,7 @@ _action_send (void *item, void *data)
time_t
t
=
time
(
NULL
);
struct
tm
*
tm
=
localtime
(
&
t
);
mu_strftime
(
date
,
sizeof
date
,
"%a, %d %b %Y %H:%M:%S %
Z
"
,
tm
);
mu_strftime
(
date
,
sizeof
date
,
"%a, %d %b %Y %H:%M:%S %
z
"
,
tm
);
mu_header_set_value
(
hdr
,
MU_HEADER_DATE
,
date
,
1
);
if
(
mu_header_get_value
(
hdr
,
MU_HEADER_FROM
,
NULL
,
0
,
&
n
))
...
...
Please
register
or
sign in
to post a comment