diff options
Diffstat (limited to 'coreutils/who.c')
-rw-r--r-- | coreutils/who.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/who.c b/coreutils/who.c index f694d0c60..ac19dc720 100644 --- a/coreutils/who.c +++ b/coreutils/who.c | |||
@@ -16,15 +16,13 @@ | |||
16 | * | 16 | * |
17 | *---------------------------------------------------------------------- | 17 | *---------------------------------------------------------------------- |
18 | */ | 18 | */ |
19 | /* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ | ||
20 | |||
21 | //config:config WHO | 19 | //config:config WHO |
22 | //config: bool "who" | 20 | //config: bool "who" |
23 | //config: default y | 21 | //config: default y |
24 | //config: depends on FEATURE_UTMP | 22 | //config: depends on FEATURE_UTMP |
25 | //config: help | 23 | //config: help |
26 | //config: who is used to show who is logged on. | 24 | //config: who is used to show who is logged on. |
27 | 25 | //config: | |
28 | //config:config USERS | 26 | //config:config USERS |
29 | //config: bool "users" | 27 | //config: bool "users" |
30 | //config: default y | 28 | //config: default y |
@@ -33,11 +31,13 @@ | |||
33 | //config: Print users currently logged on. | 31 | //config: Print users currently logged on. |
34 | 32 | ||
35 | //applet:IF_USERS(APPLET_ODDNAME(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users)) | 33 | //applet:IF_USERS(APPLET_ODDNAME(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users)) |
36 | //applet:IF_WHO( APPLET( who, BB_DIR_USR_BIN, BB_SUID_DROP)) | 34 | //applet:IF_WHO(APPLET(who, BB_DIR_USR_BIN, BB_SUID_DROP)) |
37 | 35 | ||
38 | //kbuild:lib-$(CONFIG_USERS) += who.o | 36 | //kbuild:lib-$(CONFIG_USERS) += who.o |
39 | //kbuild:lib-$(CONFIG_WHO) += who.o | 37 | //kbuild:lib-$(CONFIG_WHO) += who.o |
40 | 38 | ||
39 | /* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ | ||
40 | |||
41 | //usage:#define users_trivial_usage | 41 | //usage:#define users_trivial_usage |
42 | //usage: "" | 42 | //usage: "" |
43 | //usage:#define users_full_usage "\n\n" | 43 | //usage:#define users_full_usage "\n\n" |