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
c9e3e0a5
...
c9e3e0a5304f8fd2666bbbed322f9def33b51e23
authored
2002-09-24 14:15:06 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(util_save_outgoing): Removed extra newline at the end of the envelope `from' line.
1 parent
46ff2b83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/util.c
mail/util.c
View file @
c9e3e0a
...
...
@@ -894,7 +894,7 @@ util_save_outgoing (message_t msg, char *savefile)
time
(
&
t
);
tm
=
gmtime
(
&
t
);
strftime
(
date
,
sizeof
(
date
),
"%a %b %e %H:%M:%S %Y
%n
"
,
tm
);
strftime
(
date
,
sizeof
(
date
),
"%a %b %e %H:%M:%S %Y"
,
tm
);
fprintf
(
outfile
,
"From %s %s
\n
"
,
mail_whoami
(),
date
);
message_get_stream
(
msg
,
&
stream
);
...
...
Please
register
or
sign in
to post a comment