From 6e69e4237d8f43232afd0dc207275f27c08039ed Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 27 Jul 2008 12:10:07 +0000 Subject: netstat: optional -p support by L. Gabriel Somlo Without FEATURE_NETSTAT_PRG: function old new delta recursive_action 416 425 +9 tcp_do_one 420 428 +8 udp_do_one 492 499 +7 raw_do_one 472 479 +7 expand 1697 1701 +4 netstat_main 489 492 +3 unix_do_one 486 488 +2 flags 1 - -1 qgravechar 109 106 -3 net_conn_line 4 - -4 bbunpack 391 383 -8 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 7/2 up/down: 40/-16) Total: 24 bytes With FEATURE_NETSTAT_PRG: file_act - 213 +213 dir_act - 192 +192 netstat_main 489 601 +112 prg_cache_get - 50 +50 tcp_do_one 420 462 +42 udp_do_one 492 533 +41 raw_do_one 472 513 +41 unix_do_one 486 519 +33 recursive_action 416 425 +9 expand 1697 1701 +4 flags 1 - -1 qgravechar 109 106 -3 net_conn_line 4 - -4 bbunpack 391 383 -8 packed_usage 24586 24572 -14 ------------------------------------------------------------------------------ (add/remove: 3/2 grow/shrink: 7/3 up/down: 737/-30) Total: 707 bytes --- libbb/recursive_action.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libbb/recursive_action.c') diff --git a/libbb/recursive_action.c b/libbb/recursive_action.c index 07bd0abfd..3ec596a35 100644 --- a/libbb/recursive_action.c +++ b/libbb/recursive_action.c @@ -141,6 +141,7 @@ int FAST_FUNC recursive_action(const char *fileName, return status; done_nak_warn: - bb_simple_perror_msg(fileName); + if (!(flags & ACTION_QUIET)) + bb_simple_perror_msg(fileName); return FALSE; } -- cgit v1.2.3