aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-05-27 13:31:52 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-05-27 13:31:52 +0000
commit6c1df37bf15ce8602bd8a997d89e21c6e21d8b0d (patch)
tree5ba2689c284bcdefb695118887cb5d92b35d2fe2
parent6599d38daaf63f40761a3ef7fe8824957a0b33c9 (diff)
downloadfetchmail-6c1df37bf15ce8602bd8a997d89e21c6e21d8b0d.tar.gz
fetchmail-6c1df37bf15ce8602bd8a997d89e21c6e21d8b0d.tar.bz2
fetchmail-6c1df37bf15ce8602bd8a997d89e21c6e21d8b0d.zip
user error(), not syslog.
svn path=/trunk/; revision=1865
-rw-r--r--fetchmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c
index bd6795d2..f0fb701a 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -519,10 +519,10 @@ int main (int argc, char **argv)
/* Save UID list to prevent re-fetch in case fetchmail
recover from crash */
- if (!check_only)
+ if (!check_only && outlevel == O_VERBOSE)
{
write_saved_lists(querylist, run.idfile);
- syslog(LOG_INFO,"Saved UID List");
+ error(0, 0, "fetchmail: saved UID List");
}
#endif /* POP3_ENABLE */
}