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
d609eea4
...
d609eea4ef739ae7d2657097d158cf9d38f000fa
authored
2001-06-12 00:40:58 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bug in imap4d/util.c(util_msgset) --> '*' was not deal it.
1 parent
10f8e961
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
ChangeLog
imap4d/util.c
ChangeLog
View file @
d609eea
2001-06-11 Alain Magloire
* imap4d/util.c (util_msgset): When '*' was define in the
set it was not added to the count.
Bug reported by Jakob Kaivo.
2001-06-09 Alain Magloire
* mailbox2/pop3/pop3_open.c: Remove for pop3_connect.c
...
...
imap4d/util.c
View file @
d609eea
...
...
@@ -333,17 +333,13 @@ util_msgset (char *s, size_t **set, int *n, int isuid)
*/
case
'*'
:
{
val
=
max
;
s
++
;
status
=
add2set
(
set
,
n
,
val
);
if
(
status
!=
0
)
{
if
(
*
set
)
free
(
*
set
);
*
n
=
0
;
return
status
;
}
val
=
max
;
s
++
;
break
;
}
/* IMAP also allows a set of noncontiguous numbers to be specified
with the ',' character:
...
...
Please
register
or
sign in
to post a comment