projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01cd957
)
- add note about SUSv3 missing options.
author
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Fri, 16 Nov 2007 11:52:42 +0000
(11:52 -0000)
committer
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Fri, 16 Nov 2007 11:52:42 +0000
(11:52 -0000)
coreutils/who.c
patch
|
blob
|
history
diff --git
a/coreutils/who.c
b/coreutils/who.c
index f336c953c7779d0c055fca9224d72843d4cbdecb..e6bd0afa8cc2ec43527da113117758ec4b3e7ddd 100644
(file)
--- 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
;
}