From: Timo Sirainen Date: Fri, 11 Sep 2009 16:26:05 +0000 (-0400) Subject: master: Startup warnings written to stderr should end with LF. X-Git-Tag: 2.0.alpha1~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4e53f5e169ceca8b1c206058437b137929b24bd;p=thirdparty%2Fdovecot%2Fcore.git master: Startup warnings written to stderr should end with LF. --HG-- branch : HEAD --- diff --git a/src/master/main.c b/src/master/main.c index eb331a79f2..993f7d8abd 100644 --- a/src/master/main.c +++ b/src/master/main.c @@ -190,7 +190,7 @@ static void fatal_log_check(const struct master_settings *set) else { buf[ret] = '\0'; fprintf(stderr, "Last died with error (see error log for more " - "information): %s", buf); + "information): %s\n", buf); } close(fd); @@ -253,7 +253,7 @@ static void auth_warning_print(const struct master_settings *set) fprintf(stderr, "If you have trouble with authentication failures,\n" "enable auth_debug setting. See http://wiki.dovecot.org/WhyDoesItNotWork\n" -"This message goes away after the first successful login."); +"This message goes away after the first successful login.\n"); } }