"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);
 }