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
53f5af34
...
53f5af34a98ca1a46d86cc8100ee8298f4acf3bd
authored
2002-08-04 08:23:26 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(flags_to_string): Map \Seen to MU_ATTRIBUTE_READ.
1 parent
94414890
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mbx_imap.c
mailbox/mbx_imap.c
View file @
53f5af3
...
...
@@ -2099,7 +2099,7 @@ flags_to_string (char **pbuf, int flag)
strcat
(
abuf
,
" "
);
strcat
(
abuf
,
"
\\
Deleted"
);
}
if
(
(
flag
&
MU_ATTRIBUTE_SEEN
)
||
(
flag
&
MU_ATTRIBUTE_READ
)
)
if
(
flag
&
MU_ATTRIBUTE_READ
)
{
char
*
tmp
=
realloc
(
abuf
,
strlen
(
abuf
)
+
strlen
(
"
\\
Seen"
)
+
2
);
if
(
tmp
==
NULL
)
...
...
Please
register
or
sign in
to post a comment