commit | a9801658ee4b7f5717d145818428452f864e1015 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Thu Sep 07 16:20:03 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Thu Sep 07 16:20:03 2006 +0000 |
tree | f85bbdf6cb572751dee639feb9896cad3503b924 | |
parent | b750dec40a4bf013f98658b46925117d9d1d4811 [diff] [blame] |
getty, sulogin: convert to using bb_msg for syslog output
diff --git a/libbb/vinfo_msg.c b/libbb/vinfo_msg.c index 82fbda2..613b013 100644 --- a/libbb/vinfo_msg.c +++ b/libbb/vinfo_msg.c
@@ -22,7 +22,7 @@ va_copy(p2, p); if (logmode & LOGMODE_STDIO) { vprintf(s, p); - putchar('\n'); + fputs(msg_eol, stdout); } if (ENABLE_FEATURE_SYSLOG && (logmode & LOGMODE_SYSLOG)) vsyslog(LOG_INFO, s, p2);