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
be61f27a
...
be61f27a31c8a54bb2de08f6fd9fd5391678f515
authored
2005-11-12 11:32:31 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Was displaying `inappropriate message' diagnostics if the first message from the…
… set was deleted. Fixed.
1 parent
01cb470e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
mail/msgset.y
mail/msgset.y
View file @
be61f27
...
...
@@ -719,9 +719,7 @@ check_set (msgset_t **pset)
msgset_t *next = p->next;
if (util_isdeleted (p->msg_part[0]))
{
if ((flags & MSG_SILENT)
&& prev != NULL
&& next != NULL)
if ((flags & MSG_SILENT) && (prev || next))
{
/* Mark subset as deleted */
p->next = delset;
...
...
Please
register
or
sign in
to post a comment