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 | |
| parent | 56a569ff306e08ecb5f8252a865617ed7e602a6a (diff) | |
| download | fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.tar.gz fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.tar.bz2 fetchmail-85537631da42f696b4a0c2f6e18064692094c7f6.zip  | |
Cleanup: change " \n" to "\n" where appropriate.
| -rw-r--r-- | TODO.txt | 2 | ||||
| -rw-r--r-- | driver.c | 4 | ||||
| -rw-r--r-- | fetchmail.c | 6 | ||||
| -rw-r--r-- | rpa.c | 2 | 
4 files changed, 6 insertions, 8 deletions
@@ -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.  @@ -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"));      	} @@ -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]);  | 
