aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-11-16 11:52:42 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-11-16 11:52:42 +0000
commite8979889b4dc2a995c4136820952a8468a09f066 (patch)
tree55109f255ac5ddb45a3388140a6709fe8b0eae12 /coreutils
parent01cd9570c7e51e0e1e472f965d9f774c761a8521 (diff)
downloadbusybox-e8979889b4dc2a995c4136820952a8468a09f066.tar.gz
- add note about SUSv3 missing options.
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/who.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/who.c b/coreutils/who.c
index f336c953c..e6bd0afa8 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;
}