aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-02-10 02:03:56 +0100
committerMatthias Andree <matthias.andree@gmx.de>2010-02-10 02:05:03 +0100
commit85537631da42f696b4a0c2f6e18064692094c7f6 (patch)
tree52359fc39885fc75479cd415c1ea29df9c61de8b
parent56a569ff306e08ecb5f8252a865617ed7e602a6a (diff)
downloadfetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.tar.gz
fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.tar.bz2
fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.zip
Cleanup: change " \n" to "\n" where appropriate.
-rw-r--r--TODO.txt2
-rw-r--r--driver.c4
-rw-r--r--fetchmail.c6
-rw-r--r--rpa.c2
4 files changed, 6 insertions, 8 deletions
diff --git a/TODO.txt b/TODO.txt
index 072a7d7d..3a95a614 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -16,8 +16,6 @@ soon - MUST:
Postfix virtual users" around 2009-09-23 on fetchmail-users@).
soon - SHOULD:
-- replace " \n" by "\n" (and similar) - but make sure translators have
- time to catch up.
- make sure the man page completely lists all options (f. i. sslcertpath) in
the tables.
- allow \Deleted without \Seen, rf.
diff --git a/driver.c b/driver.c
index c817a7d3..8a43399a 100644
--- a/driver.c
+++ b/driver.c
@@ -246,12 +246,12 @@ const char *canonical; /* server name */
if (retval) {
#ifdef HEIMDAL
if (err_ret && err_ret->e_text) {
- report(stderr, GT_("krb5_sendauth: %s [server says '%s'] \n"),
+ report(stderr, GT_("krb5_sendauth: %s [server says '%s']\n"),
error_message(retval),
err_ret->e_text);
#else
if (err_ret && err_ret->text.length) {
- report(stderr, GT_("krb5_sendauth: %s [server says '%*s'] \n"),
+ report(stderr, GT_("krb5_sendauth: %s [server says '%*s']\n"),
error_message(retval),
err_ret->text.length,
err_ret->text.data);
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"));
}
diff --git a/rpa.c b/rpa.c
index 7f4c0658..a8091897 100644
--- a/rpa.c
+++ b/rpa.c
@@ -883,7 +883,7 @@ static void md5(const void *in_,int len,unsigned char *out)
MD5Final( out, &md5context );
if (outlevel >= O_DEBUG)
{
- report(stdout, GT_("MD5 result is: \n"));
+ report(stdout, GT_("MD5 result is:\n"));
for (i=0; i<16; i++)
{
report_build(stdout, "%02X ",out[i]);