aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-30 21:49:43 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-30 21:49:43 +0000
commitf1f0ac1b7065c152478853052472b0ce8de7be50 (patch)
tree4d111099919954be870d56ed692c4f4c5742cd04 /driver.c
parent751291fd62da691de3f0c25a8a9a464b4b8318c6 (diff)
downloadfetchmail-f1f0ac1b7065c152478853052472b0ce8de7be50.tar.gz
fetchmail-f1f0ac1b7065c152478853052472b0ce8de7be50.tar.bz2
fetchmail-f1f0ac1b7065c152478853052472b0ce8de7be50.zip
Change format message.
svn path=/trunk/; revision=849
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/driver.c b/driver.c
index fd4e4155..2b92ad01 100644
--- a/driver.c
+++ b/driver.c
@@ -1223,18 +1223,19 @@ const struct method *proto; /* protocol method table */
/* show user how many messages we downloaded */
if (outlevel > O_SILENT)
if (count == 0)
- error(0, 0, "No mail from %s@%s",
+ error(0, 0, "No mail at %s@%s",
ctl->remotename,
realname);
else
{
if (new != -1 && (count - new) > 0)
- error(0, 0, "%d message%s (%d seen) from %s@%s.",
+ error(0, 0, "%d message%s (%d seen) at %s@%s.",
count, count > 1 ? "s" : "", count-new,
ctl->remotename,
realname);
else
- error(0, 0, "%d message%s from %s@%s.", count, count > 1 ? "s" : "",
+ error(0, 0, "%d message%s at %s@%s.",
+ count, count > 1 ? "s" : "",
ctl->remotename,
realname);
}