From e8979889b4dc2a995c4136820952a8468a09f066 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 16 Nov 2007 11:52:42 +0000 Subject: [PATCH] - add note about SUSv3 missing options. --- coreutils/who.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ -71,5 +72,5 @@ int who_main(int argc, char **argv) } if (ENABLE_FEATURE_CLEAN_UP) endutent(); - return 0; + return EXIT_SUCCESS; }