summaryrefslogtreecommitdiff
path: root/comsat
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 /comsat
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 'comsat')
-rw-r--r--comsat/comsat.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/comsat/comsat.c b/comsat/comsat.c
index 9b9b99f66..f5b4c3040 100644
--- a/comsat/comsat.c
+++ b/comsat/comsat.c
@@ -449,21 +449,21 @@ notify_user (const char *user, const char *device, const char *path, off_t offse
|| (status = mailbox_open (mbox, MU_STREAM_READ)) != 0)
{
syslog (LOG_ERR, _("can't open mailbox %s: %s"),
- path, mu_errstring (status));
+ path, mu_strerror (status));
return;
}
if ((status = mailbox_get_stream (mbox, &stream)))
{
syslog (LOG_ERR, _("can't get stream for mailbox %s: %s"),
- path, mu_errstring (status));
+ path, mu_strerror (status));
return;
}
if ((status = stream_size (stream, (off_t *) &size)))
{
syslog (LOG_ERR, _("can't get stream size (mailbox %s): %s"),
- path, mu_errstring (status));
+ path, mu_strerror (status));
return;
}
@@ -480,14 +480,14 @@ notify_user (const char *user, const char *device, const char *path, off_t offse
|| (status = mailbox_open (tmp, MU_STREAM_READ)) != 0)
{
syslog (LOG_ERR, _("can't create temporary mailbox: %s"),
- mu_errstring (status));
+ mu_strerror (status));
return;
}
if ((status = memory_stream_create (&stream, 0, 0)))
{
syslog (LOG_ERR, _("can't create temporary stream: %s"),
- mu_errstring (status));
+ mu_strerror (status));
return;
}

Return to:

Send suggestions and report system problems to the System administrator.