updated.
Showing
2 changed files
with
6 additions
and
1 deletions
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 | { | ... | ... |
-
Please register or sign in to post a comment