diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-01-06 02:44:58 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-01-06 02:44:58 +0000 |
commit | e6e5c6c4ddffa8199225c76cd46e34ab58aec2ca (patch) | |
tree | 8e3726698b9b3c1ffb29df2cd64608d29e9391f1 /fetchmail.c | |
parent | 44d730b7b75d809f2d89a0c68a43da4bd90c0f83 (diff) | |
download | fetchmail-e6e5c6c4ddffa8199225c76cd46e34ab58aec2ca.tar.gz fetchmail-e6e5c6c4ddffa8199225c76cd46e34ab58aec2ca.tar.bz2 fetchmail-e6e5c6c4ddffa8199225c76cd46e34ab58aec2ca.zip |
More error message cleanup.
svn path=/trunk/; revision=2333
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index f0fd8997..7284477c 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -454,11 +454,11 @@ int main (int argc, char **argv) if (run.use_syslog) { openlog(program_name, LOG_PID, LOG_MAIL); - error_init(-1); + report_init(-1); } else #endif - error_init((run.poll_interval == 0 || nodetach) && !run.logfile); + report_init((run.poll_interval == 0 || nodetach) && !run.logfile); if (run.poll_interval) { |