diff options
author | Bernhard Reutner-Fischer | 2007-11-16 11:52:42 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-11-16 11:52:42 +0000 |
commit | e8979889b4dc2a995c4136820952a8468a09f066 (patch) | |
tree | 55109f255ac5ddb45a3388140a6709fe8b0eae12 | |
parent | 01cd9570c7e51e0e1e472f965d9f774c761a8521 (diff) | |
download | busybox-e8979889b4dc2a995c4136820952a8468a09f066.zip busybox-e8979889b4dc2a995c4136820952a8468a09f066.tar.gz |
- add note about SUSv3 missing options.
-rw-r--r-- | coreutils/who.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/who.c b/coreutils/who.c index f336c95..e6bd0af 100644 --- a/coreutils/who.c +++ b/coreutils/who.c @@ -16,6 +16,7 @@ * *---------------------------------------------------------------------- */ +/* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -H, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ #include "libbb.h" #include <utmp.h> @@ -71,5 +72,5 @@ int who_main(int argc, char **argv) } if (ENABLE_FEATURE_CLEAN_UP) endutent(); - return 0; + return EXIT_SUCCESS; } |