diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 | ||||
-rw-r--r-- | include/usage.h | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 48cbd90..2dcdeac 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -278,6 +278,7 @@ enum { ACTION_FOLLOWLINKS_L0 = (1 << 2), ACTION_DEPTHFIRST = (1 << 3), /*ACTION_REVERSE = (1 << 4), - unused */ + ACTION_QUIET = (1 << 5), }; extern int recursive_action(const char *fileName, unsigned flags, int FAST_FUNC (*fileAction)(const char *fileName, struct stat* statbuf, void* userData, int depth), diff --git a/include/usage.h b/include/usage.h index 9a73d08..110fbf6 100644 --- a/include/usage.h +++ b/include/usage.h @@ -2820,7 +2820,7 @@ #endif #define netstat_trivial_usage \ - "[-laentuwxr"USE_FEATURE_NETSTAT_WIDE("W")"]" + "[-laentuwxr"USE_FEATURE_NETSTAT_WIDE("W")USE_FEATURE_NETSTAT_PRG("p")"]" #define netstat_full_usage "\n\n" \ "Display networking information\n" \ "\nOptions:" \ @@ -2835,6 +2835,9 @@ "\n -r Display routing table" \ USE_FEATURE_NETSTAT_WIDE( \ "\n -W Display with no column truncation" \ + ) \ + USE_FEATURE_NETSTAT_PRG( \ + "\n -p Display PID/Program name for sockets" \ ) #define nice_trivial_usage \ |