diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-02-10 02:03:56 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-02-10 02:05:03 +0100 |
commit | 85537631da42f696b4a0c2f6e18064692094c7f6 (patch) | |
tree | 52359fc39885fc75479cd415c1ea29df9c61de8b /fetchmail.c | |
parent | 56a569ff306e08ecb5f8252a865617ed7e602a6a (diff) | |
download | fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.tar.gz fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.tar.bz2 fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.zip |
Cleanup: change " \n" to "\n" where appropriate.
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index cfeb5774..cb1bc900 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -584,7 +584,7 @@ int main(int argc, char **argv) exit(rc); } } - report(stdout, GT_("starting fetchmail %s daemon \n"), VERSION); + report(stdout, GT_("starting fetchmail %s daemon\n"), VERSION); /* * We'll set up a handler for these when we're sleeping, @@ -600,9 +600,9 @@ int main(int argc, char **argv) if (run.logfile && !nodetach && access(run.logfile, F_OK) == 0) { if (!freopen(run.logfile, "a", stdout)) - report(stderr, GT_("could not open %s to append logs to \n"), run.logfile); + report(stderr, GT_("could not open %s to append logs to\n"), run.logfile); if (!freopen(run.logfile, "a", stderr)) - report(stdout, GT_("could not open %s to append logs to \n"), run.logfile); + report(stdout, GT_("could not open %s to append logs to\n"), run.logfile); if (run.use_syslog) report(stdout, GT_("fetchmail: Warning: syslog and logfile are set. Check both for logs!\n")); } |