aboutsummaryrefslogtreecommitdiff
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
parent01cd9570c7e51e0e1e472f965d9f774c761a8521 (diff)
downloadbusybox-w32-e8979889b4dc2a995c4136820952a8468a09f066.tar.gz
busybox-w32-e8979889b4dc2a995c4136820952a8468a09f066.tar.bz2
busybox-w32-e8979889b4dc2a995c4136820952a8468a09f066.zip
- add note about SUSv3 missing options.
-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 @@
16 * 16 *
17 *---------------------------------------------------------------------- 17 *----------------------------------------------------------------------
18 */ 18 */
19/* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -H, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */
19 20
20#include "libbb.h" 21#include "libbb.h"
21#include <utmp.h> 22#include <utmp.h>
@@ -71,5 +72,5 @@ int who_main(int argc, char **argv)
71 } 72 }
72 if (ENABLE_FEATURE_CLEAN_UP) 73 if (ENABLE_FEATURE_CLEAN_UP)
73 endutent(); 74 endutent();
74 return 0; 75 return EXIT_SUCCESS;
75} 76}