summaryrefslogtreecommitdiff
path: root/examples/sfrom.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2003-01-22 21:44:15 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2003-01-22 21:44:15 +0000
commit05f001b19dea73e5d2b6e16ddf7a7daa0f14b174 (patch)
treedeb443c5164bfb6f15a90fa7178f6f75044d945d /examples/sfrom.c
parenta72eb831a177db6c061170e34f6fe6612f0f148c (diff)
downloadmailutils-05f001b19dea73e5d2b6e16ddf7a7daa0f14b174.tar.gz
mailutils-05f001b19dea73e5d2b6e16ddf7a7daa0f14b174.tar.bz2
Renamed mu_errstring to mu_strerror for consistency with the usual practice.
Diffstat (limited to 'examples/sfrom.c')
-rw-r--r--examples/sfrom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/sfrom.c b/examples/sfrom.c
index b07f70727..47c8517a4 100644
--- a/examples/sfrom.c
+++ b/examples/sfrom.c
@@ -45,14 +45,14 @@ main (int argc, const char **argv)
if (status != 0)
{
- fprintf (stderr, "mailbox_create: %s\n", mu_errstring (status));
+ fprintf (stderr, "mailbox_create: %s\n", mu_strerror (status));
exit (EXIT_FAILURE);
}
status = mailbox_open (mbox, MU_STREAM_READ);
if (status != 0)
{
- fprintf (stderr, "mailbox_open: %s\n", mu_errstring (status));
+ fprintf (stderr, "mailbox_open: %s\n", mu_strerror (status));
exit (EXIT_FAILURE);
}
@@ -67,7 +67,7 @@ main (int argc, const char **argv)
|| (status = message_get_header (msg, &hdr)) != 0)
{
fprintf (stderr, "Error message: %s\n",
- mu_errstring (status));
+ mu_strerror (status));
exit (EXIT_FAILURE);
}

Return to:

Send suggestions and report system problems to the System administrator.