Commit 29e43b89 29e43b891d3e804d5b7e9ae3daa2b2dd7d2c5be6 by Alain Magloire

Buglet fix.

1 parent c1813e67
2001-06-01 Alain Magloire
* mailbox/mbx_pop.c (pop_writeline): if buffer is NULL noop.
2001-06-01 Sergey Poznyakoff
* imap4d/search.c: case-insensitive comparison for text fields.
Error checking for stray symbols at the end of criteria.
......
......@@ -1783,6 +1783,8 @@ pop_writeline (pop_data_t mpd, const char *format, ...)
va_list ap;
int done = 1;
if (mpd->buffer == NULL)
return EINVAL;
va_start(ap, format);
do
{
......