From: John Jetmore Date: Sat, 12 Jun 2010 17:56:32 +0000 (+0000) Subject: removed extraneous "\n" from the end of some log_write lines, removed "magic" string... X-Git-Tag: exim-4_73_RC0~32 X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=commitdiff_plain;h=a053d12591b8ef90116feba27d290408a044f813 removed extraneous "\n" from the end of some log_write lines, removed "magic" string " => " from a non-delivery log line --- diff --git a/src/src/readconf.c b/src/src/readconf.c index 33f10690b..954d546a4 100644 --- a/src/src/readconf.c +++ b/src/src/readconf.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/readconf.c,v 1.44 2010/06/12 15:21:26 jetmore Exp $ */ +/* $Cambridge: exim/src/src/readconf.c,v 1.45 2010/06/12 17:56:32 jetmore Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -3207,12 +3207,12 @@ if (openssl_options != NULL) { # ifdef USE_GNUTLS log_write(0, LOG_PANIC_DIE|LOG_CONFIG, - "openssl_options is set but we're using GnuTLS\n"); + "openssl_options is set but we're using GnuTLS"); # else long dummy; if (!(tls_openssl_options_parse(openssl_options, &dummy))) log_write(0, LOG_PANIC_DIE|LOG_CONFIG, - "openssl_options parse error: %s\n", openssl_options); + "openssl_options parse error: %s", openssl_options); # endif } #endif diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index e01edc008..3ea55f238 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/tls-openssl.c,v 1.27 2010/06/07 00:12:42 pdp Exp $ */ +/* $Cambridge: exim/src/src/tls-openssl.c,v 1.28 2010/06/12 17:56:32 jetmore Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -714,7 +714,7 @@ if (rc <= 0) tls_error(US"SSL_accept", NULL, sigalrm_seen ? US"timed out" : NULL); if (ERR_get_error() == 0) log_write(0, LOG_MAIN, - " => client disconnected cleanly (rejected our certificate?)\n"); + "TLS client disconnected cleanly (rejected our certificate?)"); return FAIL; }