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
270b4d12
...
270b4d124d1381a2d3e0a1e814c545471b64969e
authored
2002-12-28 10:52:46 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix: do not translate header names
1 parent
cbf6717f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mail/followup.c
mail/followup.c
View file @
270b4d1
...
...
@@ -69,8 +69,8 @@ mail_followup (int argc, char **argv)
msgset_free
(
msglist
);
fprintf
(
ofile
,
_
(
"To: %s
\n
"
)
,
compose_header_get
(
&
env
,
MU_HEADER_TO
,
""
));
fprintf
(
ofile
,
_
(
"Subject: %s
\n\n
"
)
,
fprintf
(
ofile
,
"To: %s
\n
"
,
compose_header_get
(
&
env
,
MU_HEADER_TO
,
""
));
fprintf
(
ofile
,
"Subject: %s
\n\n
"
,
compose_header_get
(
&
env
,
MU_HEADER_SUBJECT
,
""
));
status
=
mail_send0
(
&
env
,
isupper
(
argv
[
0
][
0
]));
...
...
Please
register
or
sign in
to post a comment