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
53b21b78
...
53b21b78acab7b1022d7f50f5954426fd5f82241
authored
2008-08-17 13:24:42 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
* libproto/maildir/mbox.c (info_to_flags): Fix return value.
1 parent
ec42a8c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
ChangeLog
libproto/maildir/mbox.c
ChangeLog
View file @
53b21b7
2008-08-17 Sergey Poznyakoff <gray@gnu.org.ua>
* libproto/maildir/mbox.c (info_to_flags): Fix return value.
Implement UNSELECT extension.
* doc/rfc/Makefile.am: Add rfc3691.txt
* doc/rfc/rfc3691.txt: New file.
...
...
libproto/maildir/mbox.c
View file @
53b21b7
...
...
@@ -94,7 +94,6 @@ static struct info_map {
{
'R'
,
MU_ATTRIBUTE_READ
},
{
'S'
,
MU_ATTRIBUTE_SEEN
},
{
'T'
,
MU_ATTRIBUTE_DELETED
},
{
0
},
};
#define info_map_size (sizeof (info_map) / sizeof (info_map[0]))
...
...
@@ -120,7 +119,7 @@ info_to_flags (char *buf)
for
(
p
=
info_map
;
p
<
info_map
+
info_map_size
;
p
++
)
if
(
strchr
(
buf
,
p
->
letter
))
flags
|=
p
->
flag
;
return
0
;
return
flags
;
}
static
char
*
...
...
Please
register
or
sign in
to post a comment