aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-27 13:41:01 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-27 13:41:01 +0000
commit30b707bc3633d8442a05a892446dca65d35d76d7 (patch)
tree70677532a6237b8092f51fbd7c3767cb1c13d780 /driver.c
parentc2c96e332ee43b86cf3393a195af822f2f77bf05 (diff)
downloadfetchmail-30b707bc3633d8442a05a892446dca65d35d76d7.tar.gz
fetchmail-30b707bc3633d8442a05a892446dca65d35d76d7.tar.bz2
fetchmail-30b707bc3633d8442a05a892446dca65d35d76d7.zip
Various minor bug fixes.
svn path=/trunk/; revision=1530
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/driver.c b/driver.c
index 482adbb1..0da54aae 100644
--- a/driver.c
+++ b/driver.c
@@ -1164,7 +1164,7 @@ int num; /* index of message */
n = stuffline(ctl, buf);
if (n != -1)
{
- sprintf(buf, "\tby %s (fetchmail-%s %s run by %s)\n",
+ sprintf(buf, "\tby %s (fetchmail-%s %s run for %s)\n",
fetchmailhost,
RELEASE_ID,
protocol->name,
@@ -1448,10 +1448,6 @@ const struct method *proto; /* protocol method table */
tagnum = 0;
tag[0] = '\0'; /* nuke any tag hanging out from previous query */
ok = 0;
- if (errors_to_syslog)
- error_init(-1);
- else
- error_init(poll_interval == 0 && !logfile);
/* set up the server-nonresponse timeout */
sigsave = signal(SIGALRM, timeout_handler);