Commit d609eea4 d609eea4ef739ae7d2657097d158cf9d38f000fa by Alain Magloire

Bug in imap4d/util.c(util_msgset) --> '*' was not deal it.

1 parent 10f8e961
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
......
......@@ -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:
......