commit | 29a05f56d579e6845db6b90cab4acff47ab0dd22 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Sat Aug 30 04:47:36 2003 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Sat Aug 30 04:47:36 2003 +0000 |
tree | 1a7e28dee2ee346f98604ff9b8baa078f0f0748f | |
parent | 9b04f1841eb4ef9b88e525796cd7230f6c3c1c6e [diff] [blame] |
"Without this patch, udhcpcd output may be buffered and delayed for for minutes if stdout is not a tty." -vda@
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c index c01cd57..ab4fa30 100644 --- a/networking/udhcp/common.c +++ b/networking/udhcp/common.c
@@ -46,6 +46,7 @@ if(!daemonized) { vprintf(fmt, p); putchar('\n'); + fflush(stdout); errno = e; } vsyslog(level, fmt, p2); @@ -81,6 +82,7 @@ errno = e; vprintf(fmt, p); putchar('\n'); + fflush(stdout); } va_end(p); }