From a4e53f5e169ceca8b1c206058437b137929b24bd Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 11 Sep 2009 12:26:05 -0400 Subject: [PATCH] master: Startup warnings written to stderr should end with LF. --HG-- branch : HEAD --- src/master/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); } } -- 2.47.3