diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-27 12:10:07 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-27 12:10:07 +0000 |
commit | 6e69e4237d8f43232afd0dc207275f27c08039ed (patch) | |
tree | d2c3e28157fface75749fa6af53a23c4d85ba4c8 /libbb/recursive_action.c | |
parent | 94d03f0da0809784b398585cd0d7669b77a475c9 (diff) | |
download | busybox-w32-6e69e4237d8f43232afd0dc207275f27c08039ed.tar.gz busybox-w32-6e69e4237d8f43232afd0dc207275f27c08039ed.tar.bz2 busybox-w32-6e69e4237d8f43232afd0dc207275f27c08039ed.zip |
netstat: optional -p support by L. Gabriel Somlo <somlo AT cmu.edu>
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
Diffstat (limited to 'libbb/recursive_action.c')
-rw-r--r-- | libbb/recursive_action.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, | |||
141 | return status; | 141 | return status; |
142 | 142 | ||
143 | done_nak_warn: | 143 | done_nak_warn: |
144 | bb_simple_perror_msg(fileName); | 144 | if (!(flags & ACTION_QUIET)) |
145 | bb_simple_perror_msg(fileName); | ||
145 | return FALSE; | 146 | return FALSE; |
146 | } | 147 | } |