Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
28d84d0a
...
28d84d0a978002714691da775ccdd6e131564af6
authored
2002-03-02 02:11:01 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Using mu_errstring() instead of strerror().
1 parent
57b57efb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
mailbox/mbx_pop.c
mailbox/mbx_pop.c
View file @
28d84d0
...
...
@@ -40,6 +40,7 @@
#include <md5-rsa.h>
#include <mailutils/errno.h>
#include <mailutils/stream.h>
#include <mailutils/body.h>
#include <mailutils/message.h>
...
...
@@ -253,7 +254,7 @@ do \
stream_close (mbox->stream); \
CLEAR_STATE (mpd); \
mpd->func = (void *)-1; \
MAILBOX_DEBUG1(mbox, MU_DEBUG_PROT, "CHECK_ERROR_CLOSE: %s\n",
strerror
(status));\
MAILBOX_DEBUG1(mbox, MU_DEBUG_PROT, "CHECK_ERROR_CLOSE: %s\n",
mu_errstring
(status));\
return status; \
} \
} \
...
...
@@ -267,7 +268,7 @@ do \
{ \
CLEAR_STATE (mpd); \
mpd->func = (void*)-1; \
MAILBOX_DEBUG1(mpd->mbox, MU_DEBUG_PROT, "CHECK_ERROR: %s\n",
strerror
(status));\
MAILBOX_DEBUG1(mpd->mbox, MU_DEBUG_PROT, "CHECK_ERROR: %s\n",
mu_errstring
(status));\
return status; \
} \
} \
...
...
@@ -283,7 +284,7 @@ do \
{ \
CLEAR_STATE (mpd); \
mpd->func = (void *)-1; \
MAILBOX_DEBUG1(mpd->mbox, MU_DEBUG_PROT, "CHECK_EAGAIN: %s\n",
strerror
(status));\
MAILBOX_DEBUG1(mpd->mbox, MU_DEBUG_PROT, "CHECK_EAGAIN: %s\n",
mu_errstring
(status));\
} \
return status; \
} \
...
...
Please
register
or
sign in
to post a comment