summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlain Magloire <alainm@gnu.org>2003-10-06 04:43:26 +0000
committerAlain Magloire <alainm@gnu.org>2003-10-06 04:43:26 +0000
commit5c3c18611aa7585586b79aaff7ffdc34503a66d4 (patch)
treea98f74216c6153264e64b03d04083944397f15bc
parent35f06ca7ef53899ad37035375028956023bcdd74 (diff)
downloadmailutils-5c3c18611aa7585586b79aaff7ffdc34503a66d4.tar.gz
mailutils-5c3c18611aa7585586b79aaff7ffdc34503a66d4.tar.bz2
updated.
-rw-r--r--ChangeLog5
-rw-r--r--mailbox/pop/pop3_dele.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index da2523ee2..44f15e599 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
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
diff --git a/mailbox/pop/pop3_dele.c b/mailbox/pop/pop3_dele.c
index 8c848e8e4..deee05d73 100644
--- a/mailbox/pop/pop3_dele.c
+++ b/mailbox/pop/pop3_dele.c
@@ -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)
{

Return to:

Send suggestions and report system problems to the System administrator.