diff options
Diffstat (limited to 'toys/posix/who.c')
-rw-r--r-- | toys/posix/who.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/who.c b/toys/posix/who.c index 414cdfc0..53252e87 100644 --- a/toys/posix/who.c +++ b/toys/posix/who.c @@ -31,7 +31,7 @@ void who_main(void) setutxent(); while ((entry = getutxent())) { - if ((toys.optflags & FLAG_a) || entry->ut_type == USER_PROCESS) { + if (FLAG(a) || entry->ut_type == USER_PROCESS) { time_t time; int time_size; char *times; |