Commit 5c3c1861 5c3c18611aa7585586b79aaff7ffdc34503a66d4 by Alain Magloire

updated.

1 parent 35f06ca7
2003-10-05 Alain Magloire
* examples/pop3client.c: A simple example illustrating the use
of the low level POP3 function calls.
2003-10-05 Alain Magloire
Implementation of the lower level functions for POP3 in a separate library.
This the first draft, the code is not yet enable in the Makefile.am
......
......@@ -29,7 +29,7 @@ mu_pop3_dele (mu_pop3_t pop3, unsigned msgno)
int status;
if (pop3 == NULL || msgno == 0)
return MU_ERR_INVALID_PARAMETER;
return EINVAL;
switch (pop3->state)
{
......