- add note about SUSv3 missing options.
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 16 Nov 2007 11:52:42 +0000 (11:52 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 16 Nov 2007 11:52:42 +0000 (11:52 -0000)
coreutils/who.c

index f336c953c7779d0c055fca9224d72843d4cbdecb..e6bd0afa8cc2ec43527da113117758ec4b3e7ddd 100644 (file)
@@ -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;
 }