Commit 5c3c1861 5c3c18611aa7585586b79aaff7ffdc34503a66d4 by Alain Magloire

updated.

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