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
abd8c5c5
...
abd8c5c5f57d9f8cfb5ad8f29e0478fcbee437e6
authored
2001-09-20 07:48:13 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Print newline not depending on the presence of Subject header.
1 parent
4ac3c3d3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
frm/frm.c
frm/frm.c
View file @
abd8c5c
...
...
@@ -180,8 +180,9 @@ action (observer_t o, size_t type)
int
status
=
header_get_value
(
hdr
,
MU_HEADER_SUBJECT
,
hsubject
,
sizeof
(
hsubject
),
NULL
);
if
(
status
==
0
)
printf
(
"%s
\n
"
,
hsubject
);
printf
(
"%s"
,
hsubject
);
}
printf
(
"
\n
"
);
break
;
}
...
...
Please
register
or
sign in
to post a comment