]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
master: Startup warnings written to stderr should end with LF.
authorTimo Sirainen <tss@iki.fi>
Fri, 11 Sep 2009 16:26:05 +0000 (12:26 -0400)
committerTimo Sirainen <tss@iki.fi>
Fri, 11 Sep 2009 16:26:05 +0000 (12:26 -0400)
--HG--
branch : HEAD

src/master/main.c

index eb331a79f2b513e343dd1b520bd083c7e39d2db6..993f7d8abd247d8075270ae0b653418ff6cd8ac4 100644 (file)
@@ -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");
        }
 }