aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-05 23:42:55 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-05 23:42:55 +0000
commit26938f4d826eefe63ba10eca023b7e09bfdb35f3 (patch)
tree562fb0c536a88985511846548087cb07b181d3cf /driver.c
parent9d129af5c2f19cb5da1c9b381dbadcffdbbdc4d0 (diff)
downloadfetchmail-26938f4d826eefe63ba10eca023b7e09bfdb35f3.tar.gz
fetchmail-26938f4d826eefe63ba10eca023b7e09bfdb35f3.tar.bz2
fetchmail-26938f4d826eefe63ba10eca023b7e09bfdb35f3.zip
Consistent error-message formats.
svn path=/trunk/; revision=3208
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index 275b7760..df38f286 100644
--- a/driver.c
+++ b/driver.c
@@ -1703,7 +1703,7 @@ const int maxfetch; /* maximum number of messages to fetch */
int err_no = errno;
#ifdef HAVE_RES_SEARCH
if (err_no != 0 && h_errno != 0)
- report(stderr, _("fetchmail: internal inconsistency\n"));
+ report(stderr, _("internal inconsistency\n"));
#endif
/*
* Avoid generating a bogus error every poll cycle when we're
@@ -1713,7 +1713,7 @@ const int maxfetch; /* maximum number of messages to fetch */
if (!((err_no == EHOSTUNREACH || err_no == ENETUNREACH)
&& run.poll_interval))
{
- report_build(stderr, _("fetchmail: %s connection to %s failed"),
+ report_build(stderr, _("%s connection to %s failed"),
protocol->name, ctl->server.pollname);
#ifdef HAVE_RES_SEARCH
if (h_errno != 0)