diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-01-05 05:01:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-01-05 05:01:19 +0000 |
commit | 3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e (patch) | |
tree | d8e71ced611c1fd8b245674a3b09f6050df72e5c /fetchmail.c | |
parent | b476ac337200fe5ed62494feb1280652eae57025 (diff) | |
download | fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.tar.gz fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.tar.bz2 fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.zip |
Progress messages now go to stdout.
svn path=/trunk/; revision=2329
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 6264b9f1..f17ae6c0 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -464,7 +464,7 @@ int main (int argc, char **argv) { if (!nodetach) daemonize(run.logfile, termhook); - report(stdout, 0, 0, _("starting fetchmail %s daemon "), VERSION); + report(stdout, 0, _("starting fetchmail %s daemon "), VERSION); /* * We'll set up a handler for these when we're sleeping, |