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
1598ce88
...
1598ce887b5017c567a282f9a1622a7f36fea5f6
authored
2003-02-13 16:31:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_mh_message_save): Check if the envelope date has a newline.
1 parent
5ccdea07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
mailbox/mbx_mh.c
mailbox/mbx_mh.c
View file @
1598ce8
...
...
@@ -576,6 +576,10 @@ _mh_message_save (struct _mh_data *mhd, struct _mh_message *mhm, int expunge)
while
(
isspace
(
*
p
))
p
++
;
fprintf
(
fp
,
"%s: %s"
,
MU_HEADER_ENV_DATE
,
p
);
if
(
*
p
&&
p
[
strlen
(
p
)
-
1
]
!=
'\n'
)
fprintf
(
fp
,
"
\n
"
);
nlines
++
;
}
...
...
Please
register
or
sign in
to post a comment