* mu-store, mu-msg-file: improve flagging

This commit is contained in:
Dirk-Jan C. Binnema
2011-08-16 00:45:42 +03:00
parent 76c8d21c73
commit 05532894a6
2 changed files with 20 additions and 24 deletions

View File

@ -339,7 +339,7 @@ get_flags (MuMsgFile *self)
/* pseudo-flag --> unread means either NEW or NOT SEEN, just
* for searching convenience */
if ((flags & MU_FLAG_NEW) || (!(flags & MU_FLAG_SEEN)))
if ((flags & MU_FLAG_NEW) || !(flags & MU_FLAG_SEEN))
flags |= MU_FLAG_UNREAD;
return flags;