aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-02-07 16:32:30 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-02-07 16:32:30 +0100
commit2bd5b4e9a0442102ab937ed771b2c11142afb744 (patch)
tree55a3d7b650993ce0f34ec12b28da344957fa9987 /networking/udhcp/dhcpc.c
parent4cae044b436a842e0575c3b6787729fb436fd04c (diff)
downloadbusybox-w32-2bd5b4e9a0442102ab937ed771b2c11142afb744.tar.gz
busybox-w32-2bd5b4e9a0442102ab937ed771b2c11142afb744.tar.bz2
busybox-w32-2bd5b4e9a0442102ab937ed771b2c11142afb744.zip
udhcp: do not setlinebuf(stdout), we don't print to stdout anymore
Since bb_info_msg() was eliminated type of buffering on stdout is not important function old new delta udhcpd_main 1463 1451 -12 udhcpc_main 2735 2723 -12 setlinebuf 19 - -19 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 0/2 up/down: 0/-43) Total: -43 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 385fc4998..35694fbe3 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -1386,8 +1386,6 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
1386 1386
1387 /* Make sure fd 0,1,2 are open */ 1387 /* Make sure fd 0,1,2 are open */
1388 bb_sanitize_stdio(); 1388 bb_sanitize_stdio();
1389 /* Equivalent of doing a fflush after every \n */
1390 setlinebuf(stdout);
1391 /* Create pidfile */ 1389 /* Create pidfile */
1392 write_pidfile(client_config.pidfile); 1390 write_pidfile(client_config.pidfile);
1393 /* Goes to stdout (unless NOMMU) and possibly syslog */ 1391 /* Goes to stdout (unless NOMMU) and possibly syslog */