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
e3441a83
...
e3441a834bf17a30bce1699e5265721b530debb9
authored
2001-07-03 11:50:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Changed order of checking message attribute bits to be compatible with existing implementations.
1 parent
4befbf28
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
mail/from.c
mail/from.c
View file @
e3441a8
...
...
@@ -84,10 +84,12 @@ mail_from (int argc, char **argv)
cflag
=
'M'
;
else
if
(
attribute_is_userflag
(
attr
,
MAIL_ATTRIBUTE_SAVED
))
cflag
=
'*'
;
else
if
(
flags
==
MU_ATTRIBUTE_RECENT
)
/*FIXME*/
cflag
=
'N'
;
else
if
(
flags
&
MU_ATTRIBUTE_READ
)
cflag
=
'O'
;
else
if
(
flags
&
MU_ATTRIBUTE_SEEN
)
cflag
=
'R'
;
else
if
(
attribute_is_recent
(
attr
))
cflag
=
'N'
;
else
cflag
=
'U'
;
...
...
Please
register
or
sign in
to post a comment