From: Roy Marples Date: Wed, 30 Jul 2008 21:27:48 +0000 (+0000) Subject: stderr should be unbuffered by default. X-Git-Tag: v4.0.2~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=121c3dce00910839ba94e6cf1448bdfc1f68a5ee;p=thirdparty%2Fdhcpcd.git stderr should be unbuffered by default. --- diff --git a/dhcpcd.c b/dhcpcd.c index 92813fc2..85e99d22 100644 --- a/dhcpcd.c +++ b/dhcpcd.c @@ -629,7 +629,6 @@ main(int argc, char **argv) closefrom(3); /* Saves calling fflush(stream) in the logger */ setlinebuf(stdout); - setlinebuf(stderr); openlog(PACKAGE, LOG_PID, LOG_LOCAL0); setlogprefix(PACKAGE ": ");